fixed issue tbl_users in database

pull/121/MERGE
13621160019@163.com 2022-02-11 14:58:37 +08:00
parent e36cf6cf46
commit 03eb3ba94b
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `myems_user_db`.`tbl_users` (
`privilege_id` BIGINT NULL,
`account_expiration_datetime_utc` DATETIME NOT NULL,
`password_expiration_datetime_utc` DATETIME NOT NULL,
`failed_login_count` INT NOT NULL,
`failed_login_count` INT NOT NULL DEFAULT 0,
PRIMARY KEY (`id`));
-- --------------------------------------------------------------------------------------------------------------------