r28570 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r28569‎ | r28570 | r28571 >
Date:21:27, 16 December 2007
Author:simetrical
Status:old
Tags:
Comment:
(bug 12314) r28417 kind of left out tables.sql . . . changed pt_by to pt_user and removed pt_user index from tables.sql. This fixes MySQL, PostgreSQL still needs to be fixed.
Modified paths:
  • /trunk/phase3/maintenance/tables.sql (modified) (history)

Diff [purge]

Index: trunk/phase3/maintenance/tables.sql
@@ -1172,13 +1172,12 @@
11731173 CREATE TABLE /*$wgDBprefix*/protected_titles (
11741174 pt_namespace int NOT NULL,
11751175 pt_title varchar(255) NOT NULL,
1176 - pt_by int unsigned NOT NULL,
 1176+ pt_user int unsigned NOT NULL,
11771177 pt_reason tinyblob,
11781178 pt_timestamp binary(14) NOT NULL,
11791179 pt_expiry varbinary(14) NOT NULL default '',
11801180 pt_create_perm varbinary(60) NOT NULL,
11811181 PRIMARY KEY (pt_namespace,pt_title),
1182 - KEY pt_by (pt_by),
11831182 KEY pt_timestamp (pt_timestamp)
11841183 ) /*$wgDBTableOptions*/;
11851184

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r28417*Rename pt_by to pt_user to be a bit more consistent...aaron19:47, 12 December 2007

Status & tagging log