No tabs, please. Other minor whitespace fixes.
authorGreg Sabino Mullane <greg@users.mediawiki.org>
Wed, 9 Jul 2008 19:07:07 +0000 (19:07 +0000)
committerGreg Sabino Mullane <greg@users.mediawiki.org>
Wed, 9 Jul 2008 19:07:07 +0000 (19:07 +0000)
maintenance/tables.sql

index d994881..da96872 100644 (file)
@@ -1240,25 +1240,25 @@ CREATE TABLE /*$wgDBprefix*/updatelog (
 -- A table to track link changes
 -- Experimental: enable using $wgTrackLinkChanges
 CREATE TABLE /*$wgDBprefix*/recentlinkchanges (
-       rlc_id int unsigned NOT NULL auto_increment,
-
-       -- page, image, category, ...
-       rlc_type varchar(15) binary NOT NULL,
-       rlc_timestamp binary(14) NOT NULL default '',
-       -- 1: insert; 2: deletion;
-       -- should probably make this an enum...
-       rlc_action tinyint(1) NOT NULL default 0,
-       
-       -- page where the links are on
-       rlc_from int NOT NULL,
-       
-       rlc_to_namespace int,
-       rlc_to_title varchar(255) binary,
-       rlc_to_blob blob, 
-       
-       PRIMARY KEY(rlc_id),
-       KEY from_timestamp (rlc_type, rlc_timestamp),
-       KEY to_timestamp (rlc_to_namespace, rlc_to_title, rlc_timestamp)
+  rlc_id int unsigned NOT NULL auto_increment,
+
+  -- page, image, category, ...
+  rlc_type varchar(15) binary NOT NULL,
+  rlc_timestamp binary(14) NOT NULL default '',
+  -- 1: insert; 2: deletion;
+  -- should probably make this an enum...
+  rlc_action tinyint(1) NOT NULL default 0,
+
+  -- page where the links are on
+  rlc_from int NOT NULL,
+
+  rlc_to_namespace int,
+  rlc_to_title varchar(255) binary,
+  rlc_to_blob blob,
+
+  PRIMARY KEY (rlc_id),
+  KEY from_timestamp (rlc_type, rlc_timestamp),
+  KEY to_timestamp (rlc_to_namespace, rlc_to_title, rlc_timestamp)
 ) /*$wgDBTableOptions*/;
 
 -- vim: sw=2 sts=2 et