Index: trunk/extensions/ConfirmAccount/SpecialConfirmAccount.php |
— | — | @@ -218,15 +218,19 @@ |
219 | 219 | |
220 | 220 | $base = dirname(__FILE__); |
221 | 221 | if( $wgDBtype == 'mysql' ) { |
| 222 | + $wgExtNewTables[] = array('account_requests', "$base/confirmaccount.sql" ); |
| 223 | + |
222 | 224 | $wgExtNewFields[] = array('account_requests', 'acr_filename', |
223 | 225 | "$base/archives/patch-acr_filename.sql" ); |
224 | | - |
| 226 | + |
225 | 227 | $wgExtNewTables[] = array('account_credentials', "$base/archives/patch-account_credentials.sql" ); |
226 | 228 | |
227 | 229 | $wgExtNewFields[] = array('account_requests', 'acr_areas', "$base/archives/patch-acr_areas.sql" ); |
228 | 230 | |
229 | 231 | $wgExtNewIndexes[] = array('account_requests', 'acr_email', "$base/archives/patch-email-index.sql" ); |
230 | 232 | } else if( $wgDBtype == 'postgres' ) { |
| 233 | + $wgExtNewTables[] = array('account_requests', "$base/confirmaccount.pg.sql" ); |
| 234 | + |
231 | 235 | $wgExtPGNewFields[] = array('account_requests', 'acr_held', "TIMESTAMPTZ" ); |
232 | 236 | $wgExtPGNewFields[] = array('account_requests', 'acr_filename', "TEXT" ); |
233 | 237 | $wgExtPGNewFields[] = array('account_requests', 'acr_storage_key', "TEXT" ); |