Rename the migration (its 51 now)

This commit is contained in:
slawkens
2026-01-31 21:46:55 +01:00
parent 4d2ed93b31
commit c2424df7a4
2 changed files with 1 additions and 1 deletions

View File

@@ -17,7 +17,7 @@ $up = function () use ($db) {
// add myaac_account_email_codes table // add myaac_account_email_codes table
if (!$db->hasTable(TABLE_PREFIX . 'account_email_codes')) { if (!$db->hasTable(TABLE_PREFIX . 'account_email_codes')) {
$db->exec(file_get_contents(__DIR__ . '/46-account_email_codes.sql')); $db->exec(file_get_contents(__DIR__ . '/51-account_email_codes.sql'));
} }
}; };