Cleanup for r50567:
authorBrion Vibber <brion@users.mediawiki.org>
Thu, 14 May 2009 22:43:57 +0000 (22:43 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Thu, 14 May 2009 22:43:57 +0000 (22:43 +0000)
* Include DB table options on log_search table creation
* Adjust tabs->spaces in table def... sounds silly, but the tabs sometimes confuse things when cut-and-pasting into mysql command line. :)

maintenance/archives/patch-log_search.sql
maintenance/tables.sql

index 2c2cd0e..e396330 100644 (file)
@@ -1,10 +1,10 @@
 CREATE TABLE /*_*/log_search (
-       -- The type of ID (rev ID, log ID, rev timestamp, username)
-       ls_field varbinary(32) NOT NULL,
-       -- The value of the ID
-       ls_value varchar(255) NOT NULL,
-       -- Key to log_id
-       ls_log_id int unsigned NOT NULL default 0,
-       PRIMARY KEY (ls_field,ls_value,ls_log_id)
-);
+  -- The type of ID (rev ID, log ID, rev timestamp, username)
+  ls_field varbinary(32) NOT NULL,
+  -- The value of the ID
+  ls_value varchar(255) NOT NULL,
+  -- Key to log_id
+  ls_log_id int unsigned NOT NULL default 0,
+  PRIMARY KEY (ls_field,ls_value,ls_log_id)
+) /*$wgDBTableOptions*/;
 CREATE INDEX /*i*/ls_log_id ON /*_*/log_search (ls_log_id);
index 101a177..9ce2380 100644 (file)
@@ -1125,14 +1125,14 @@ CREATE INDEX /*i*/times ON /*_*/logging (log_timestamp);
 
 
 CREATE TABLE /*_*/log_search (
-       -- The type of ID (rev ID, log ID, rev timestamp, username)
-       ls_field varbinary(32) NOT NULL,
-       -- The value of the ID
-       ls_value varchar(255) NOT NULL,
-       -- Key to log_id
-       ls_log_id int unsigned NOT NULL default 0,
-       PRIMARY KEY (ls_field,ls_value,ls_log_id)
-);
+  -- The type of ID (rev ID, log ID, rev timestamp, username)
+  ls_field varbinary(32) NOT NULL,
+  -- The value of the ID
+  ls_value varchar(255) NOT NULL,
+  -- Key to log_id
+  ls_log_id int unsigned NOT NULL default 0,
+  PRIMARY KEY (ls_field,ls_value,ls_log_id)
+) /*$wgDBTableOptions*/;
 CREATE INDEX /*i*/ls_log_id ON /*_*/log_search (ls_log_id);