diff --git a/system/migrations/46-account_email_codes.sql b/system/migrations/51-account_email_codes.sql similarity index 100% rename from system/migrations/46-account_email_codes.sql rename to system/migrations/51-account_email_codes.sql diff --git a/system/migrations/51.php b/system/migrations/51.php index d6a78207..c18b377c 100644 --- a/system/migrations/51.php +++ b/system/migrations/51.php @@ -17,7 +17,7 @@ $up = function () use ($db) { // add myaac_account_email_codes table 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')); } };