Skip to content

Commit 0625562

Browse files
authored
Update 02-create-table-users.sql
1 parent fe86543 commit 0625562

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

application/_installation/02-create-table-users.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ CREATE TABLE IF NOT EXISTS `huge`.`users` (
1414
`user_last_login_timestamp` bigint(20) DEFAULT NULL COMMENT 'timestamp of user''s last login',
1515
`user_failed_logins` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'user''s failed login attempts',
1616
`user_last_failed_login` int(10) DEFAULT NULL COMMENT 'unix timestamp of last failed login attempt',
17-
`user_activation_hash` varchar(40) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'user''s email verification hash string',
18-
`user_password_reset_hash` char(40) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'user''s password reset code',
17+
`user_activation_hash` varchar(80) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'user''s email verification hash string',
18+
`user_password_reset_hash` char(80) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'user''s password reset code',
1919
`user_password_reset_timestamp` bigint(20) DEFAULT NULL COMMENT 'timestamp of the password reset request',
2020
`user_provider_type` text COLLATE utf8_unicode_ci,
2121
PRIMARY KEY (`user_id`),

0 commit comments

Comments
 (0)