* Add a nice fieldset to the input form to be consistent with other forms.
[lhc/web/wiklou.git] / maintenance / tables.sql
index adc22e2..13a29de 100644 (file)
@@ -597,6 +597,9 @@ CREATE TABLE /*$wgDBprefix*/ipblocks (
   -- User ID who made the block.
   ipb_by int unsigned NOT NULL default '0',
   
+  -- User name of blocker
+  ipb_by_text varchar(255) binary NOT NULL default '',
+  
   -- Text comment made by blocker.
   ipb_reason tinyblob NOT NULL,
   
@@ -1169,17 +1172,25 @@ CREATE TABLE /*$wgDBprefix*/page_restrictions (
 ) /*$wgDBTableOptions*/;
 
 -- Protected titles - nonexistent pages that have been protected
-CREATE TABLE `/*$wgDBPrefix*/protected_titles` (
-  `pt_namespace` int(11) NOT NULL,
-  `pt_title` varchar(255) NOT NULL,
-  `pt_by` int(10) unsigned NOT NULL,
-  `pt_reason` tinyblob,
-  `pt_timestamp` binary(14) NOT NULL,
-  `pt_expiry` varbinary(14) NOT NULL default '',
-  `pt_create_perm` varbinary(60) NOT NULL,
-  PRIMARY KEY  (`pt_namespace`,`pt_title`),
-  KEY `pt_by` (`pt_by`),
-  KEY `pt_timestamp` (`pt_timestamp`)
-) /*$wgDBTableOptions*/
+CREATE TABLE /*$wgDBprefix*/protected_titles (
+  pt_namespace int NOT NULL,
+  pt_title varchar(255) NOT NULL,
+  pt_user int unsigned NOT NULL,
+  pt_reason tinyblob,
+  pt_timestamp binary(14) NOT NULL,
+  pt_expiry varbinary(14) NOT NULL default '',
+  pt_create_perm varbinary(60) NOT NULL,
+  PRIMARY KEY (pt_namespace,pt_title),
+  KEY pt_timestamp (pt_timestamp)
+) /*$wgDBTableOptions*/;
+
+-- Name/value pairs indexed by page_id
+CREATE TABLE /*$wgDBprefix*/page_props (
+  pp_page int NOT NULL,
+  pp_propname varbinary(60) NOT NULL,
+  pp_value blob NOT NULL,
+
+  PRIMARY KEY (pp_page,pp_propname)
+) /*$wgDBTableOptions*/;
 
 -- vim: sw=2 sts=2 et