Index: trunk/extensions/ConfirmAccount/ConfirmAccount.sql |
— | — | @@ -5,7 +5,7 @@ |
6 | 6 | |
7 | 7 | -- This stores all of our reviews, |
8 | 8 | -- the corresponding tags are stored in the tag table |
9 | | -CREATE TABLE /*$wgDBprefix*/account_requests ( |
| 9 | +CREATE TABLE /*_*/account_requests ( |
10 | 10 | acr_id int unsigned NOT NULL auto_increment, |
11 | 11 | -- Usernames must be unique, must not be in the form of |
12 | 12 | -- an IP address. _Shouldn't_ allow slashes or case |
— | — | @@ -62,11 +62,11 @@ |
63 | 63 | UNIQUE KEY (acr_email(255)), |
64 | 64 | INDEX (acr_email_token), |
65 | 65 | INDEX acr_type_del_reg (acr_type,acr_deleted,acr_registration) |
66 | | -) TYPE=InnoDB; |
| 66 | +) /*$wgDBTableOptions*/; |
67 | 67 | |
68 | 68 | -- This stores all of credential information |
69 | 69 | -- When accounts are confirmed, the identity info goes here |
70 | | -CREATE TABLE /*$wgDBprefix*/account_credentials ( |
| 70 | +CREATE TABLE /*_*/account_credentials ( |
71 | 71 | -- Revision ID # |
72 | 72 | acd_id int unsigned NOT NULL auto_increment, |
73 | 73 | -- Foreign key to user.user_id |
— | — | @@ -107,4 +107,4 @@ |
108 | 108 | PRIMARY KEY (acd_user_id,acd_id), |
109 | 109 | UNIQUE KEY (acd_id) |
110 | 110 | |
111 | | -) TYPE=InnoDB; |
| 111 | +) /*$wgDBTableOptions*/; |