From: rtcn2 Date: Thu, 31 Aug 2006 19:47:54 +0000 (+0000) Subject: missing comma inserted line 752, removed comma from line 753 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=9fb0f61a036bb536afc02f9311f91a5ca411745f;p=moodle.git missing comma inserted line 752, removed comma from line 753 --- diff --git a/lib/db/postgres7.sql b/lib/db/postgres7.sql index a9293b9a1a..e4f6c32aeb 100644 --- a/lib/db/postgres7.sql +++ b/lib/db/postgres7.sql @@ -749,8 +749,8 @@ CREATE TABLE prefix_capabilities ( name varchar(255) NOT NULL default '', captype varchar(50) NOT NULL default '', contextlevel integer NOT NULL default 0, - component varchar(100) NOT NULL default '' - riskbitmask integer NOT NULL default 0, + component varchar(100) NOT NULL default '', + riskbitmask integer NOT NULL default 0 ); CREATE UNIQUE INDEX prefix_capabilities_name_idx ON prefix_capabilities (name); @@ -779,4 +779,4 @@ INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('message' INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('message', 'add contact', 'user', 'firstname||\' \'||lastname'); INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('message', 'remove contact', 'user', 'firstname||\' \'||lastname'); INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('message', 'block contact', 'user', 'firstname||\' \'||lastname'); -INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('message', 'unblock contact', 'user', 'firstname||\' \'||lastname'); +INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('message', 'unblock contact', 'user', 'firstname||\' \'||lastname'); \ No newline at end of file