Index: branches/REL1_15/extensions/ConfirmAccount/ConfirmAccount.sql |
— | — | @@ -2,6 +2,7 @@ |
3 | 3 | |
4 | 4 | -- Table structure for table `Confirm account` |
5 | 5 | -- Replace /*$wgDBprefix*/ with the proper prefix |
| 6 | +-- Replace /*$wgDBTableOptions*/ with ENGINE=InnoDB preferably |
6 | 7 | |
7 | 8 | -- This stores all of our reviews, |
8 | 9 | -- the corresponding tags are stored in the tag table |
— | — | @@ -62,7 +63,7 @@ |
63 | 64 | UNIQUE KEY (acr_email(255)), |
64 | 65 | INDEX (acr_email_token), |
65 | 66 | INDEX acr_type_del_reg (acr_type,acr_deleted,acr_registration) |
66 | | -) TYPE=InnoDB; |
| 67 | +) /*$wgDBTableOptions*/; |
67 | 68 | |
68 | 69 | -- This stores all of credential information |
69 | 70 | -- When accounts are confirmed, the identity info goes here |
— | — | @@ -107,4 +108,4 @@ |
108 | 109 | PRIMARY KEY (acd_user_id,acd_id), |
109 | 110 | UNIQUE KEY (acd_id) |
110 | 111 | |
111 | | -) TYPE=InnoDB; |
| 112 | +) /*$wgDBTableOptions*/; |