mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
Merge branch 'master' of ssh://**REDACTED**/~/_C++/gradido_login_server
This commit is contained in:
commit
fc91ba219e
@ -4,6 +4,7 @@ CREATE TABLE `email_opt_in` (
|
||||
`verification_code` bigint(25) unsigned NOT NULL,
|
||||
`email_opt_in_type_id` int(11) NOT NULL,
|
||||
`created` datetime NOT NULL DEFAULT current_timestamp(),
|
||||
`resend_count` int(11) DEFAULT 0,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `verification_code` (`verification_code`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
||||
|
||||
@ -8,6 +8,7 @@ CREATE TABLE `users` (
|
||||
`privkey` binary(80) DEFAULT NULL,
|
||||
`created` datetime NOT NULL DEFAULT current_timestamp(),
|
||||
`email_checked` tinyint(1) NOT NULL DEFAULT 0,
|
||||
`passphrase_shown` tinyint(1) NOT NULL DEFAULT 0,
|
||||
`language` varchar(4) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT 'de',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `email` (`email`)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user