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

@@ -0,0 +1,8 @@
CREATE TABLE `myaac_account_email_codes`
(
`id` int(11) NOT NULL AUTO_INCREMENT,
`account_id` int NOT NULL,
`code` varchar(6) NOT NULL,
`created_at` int NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4;