r86790 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r86789‎ | r86790 | r86791 >
Date:21:12, 23 April 2011
Author:aaron
Status:ok
Tags:
Comment:
Use $wgDBTableOptions rather than deprecated type=x
Modified paths:
  • /branches/REL1_15/extensions/ConfirmAccount/ConfirmAccount.sql (modified) (history)

Diff [purge]

Index: branches/REL1_15/extensions/ConfirmAccount/ConfirmAccount.sql
@@ -2,6 +2,7 @@
33
44 -- Table structure for table `Confirm account`
55 -- Replace /*$wgDBprefix*/ with the proper prefix
 6+-- Replace /*$wgDBTableOptions*/ with ENGINE=InnoDB preferably
67
78 -- This stores all of our reviews,
89 -- the corresponding tags are stored in the tag table
@@ -62,7 +63,7 @@
6364 UNIQUE KEY (acr_email(255)),
6465 INDEX (acr_email_token),
6566 INDEX acr_type_del_reg (acr_type,acr_deleted,acr_registration)
66 -) TYPE=InnoDB;
 67+) /*$wgDBTableOptions*/;
6768
6869 -- This stores all of credential information
6970 -- When accounts are confirmed, the identity info goes here
@@ -107,4 +108,4 @@
108109 PRIMARY KEY (acd_user_id,acd_id),
109110 UNIQUE KEY (acd_id)
110111
111 -) TYPE=InnoDB;
 112+) /*$wgDBTableOptions*/;

Status & tagging log