chg: use lowercase for int in whole MYSQL.sql

pull/1324/head
Andreas Ziegler 2016-07-04 15:28:17 +02:00
parent fd5e463926
commit 46b0dd1cb2
1 changed files with 2 additions and 2 deletions

View File

@ -678,8 +678,8 @@ CREATE TABLE IF NOT EXISTS `users` (
`contactalert` tinyint(1) NOT NULL DEFAULT '0',
`disabled` BOOLEAN NOT NULL DEFAULT '0',
`expiration` datetime DEFAULT NULL,
`current_login` INT(11) DEFAULT 0,
`last_login` INT(11) DEFAULT 0,
`current_login` int(11) DEFAULT 0,
`last_login` int(11) DEFAULT 0,
`force_logout` tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
INDEX `email` (`email`),