Opps forgot to dump DB when remember_me_token was added causing remember_me on new installs to fail

This commit is contained in:
johnnyq 2023-12-01 11:53:30 -05:00
parent 469c8aa501
commit 7d0813a163
1 changed files with 2 additions and 1 deletions

3
db.sql
View File

@ -1632,6 +1632,7 @@ DROP TABLE IF EXISTS `user_settings`;
CREATE TABLE `user_settings` (
`user_id` int(11) NOT NULL,
`user_role` int(11) NOT NULL,
`user_config_remember_me_token` varchar(255) DEFAULT NULL,
`user_config_force_mfa` tinyint(1) NOT NULL DEFAULT 0,
`user_config_records_per_page` int(11) NOT NULL DEFAULT 10,
PRIMARY KEY (`user_id`)
@ -1746,4 +1747,4 @@ CREATE TABLE `vendors` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-11-06 14:51:28
-- Dump completed on 2023-12-01 11:52:50