updated expiration on email confirm tokens to 1 hour rather than 10 min
This commit is contained in:
parent
11b8b554f1
commit
4e1190952a
@ -205,9 +205,9 @@ INSERT INTO `token_types` (`id`, `name`, `expiration`) VALUES
|
||||
(2, 'confirm_email', 0),
|
||||
(3, 'invitation', 0),
|
||||
(4, 'account_unlock', 0),
|
||||
(5, 'account_edit', 360),
|
||||
(6, 'change_pw', 360),
|
||||
(7, 'withdraw_funds', 360);
|
||||
(5, 'account_edit', 3600),
|
||||
(6, 'change_pw', 3600),
|
||||
(7, 'withdraw_funds', 3600);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `transactions` (
|
||||
`id` int(255) NOT NULL AUTO_INCREMENT,
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
ALTER TABLE `accounts` ADD COLUMN `signup_timestamp` INT( 10 ) NOT NULL DEFAULT '0' AFTER `failed_pins`;
|
||||
ALTER TABLE `accounts` ADD COLUMN `notify_email` VARCHAR( 255 ) NULL DEFAULT NULL AFTER `email`;
|
||||
TRUNCATE TABLE `token_types`;
|
||||
INSERT INTO `token_types` (`id`, `name`, `expiration`) VALUES (1, 'password_reset', 3600), (2, 'confirm_email', 0), (3, 'invitation', 0), (4, 'account_unlock', 0), (5, 'account_edit', 360), (6, 'change_pw', 360), (7, 'withdraw_funds', 360);
|
||||
INSERT INTO `token_types` (`id`, `name`, `expiration`) VALUES (1, 'password_reset', 3600), (2, 'confirm_email', 0), (3, 'invitation', 0), (4, 'account_unlock', 0), (5, 'account_edit', 3600), (6, 'change_pw', 3600), (7, 'withdraw_funds', 3600);
|
||||
INSERT INTO `settings` (`name`, `value`) VALUES ('DB_VERSION', '0.0.4') ON DUPLICATE KEY UPDATE `value` = '0.0.4';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user