From c2424df7a4b6485cd80a8d3508c9be435a719886 Mon Sep 17 00:00:00 2001 From: slawkens Date: Sat, 31 Jan 2026 21:46:55 +0100 Subject: [PATCH] Rename the migration (its 51 now) --- .../{46-account_email_codes.sql => 51-account_email_codes.sql} | 0 system/migrations/51.php | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename system/migrations/{46-account_email_codes.sql => 51-account_email_codes.sql} (100%) 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')); } };