mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
Fix collation in email verifications
This commit is contained in:
parent
2610d281b9
commit
7011d3298b
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ ALTER TABLE `profiles` ADD `activated` tinyint(3) NULL DEFAULT '1' AFTER `2fa_se
|
||||||
CREATE TABLE IF NOT EXISTS `email_verifications` (
|
CREATE TABLE IF NOT EXISTS `email_verifications` (
|
||||||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||||||
`profile` bigint(20) unsigned NOT NULL,
|
`profile` bigint(20) unsigned NOT NULL,
|
||||||
`key` char(64) COLLATE utf8mb4_general_nopad_ci NOT NULL,
|
`key` char(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
||||||
`timestamp` bigint(20) unsigned NOT NULL,
|
`timestamp` bigint(20) unsigned NOT NULL,
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||||||
|
|
Loading…
Reference in a new issue