mirror of
https://github.com/slawkens/myaac.git
synced 2025-06-26 23:00:14 +02:00
9 lines
234 B
SQL
9 lines
234 B
SQL
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;
|