chg: remove quotes from integers in MYSQL.sql

pull/1327/head
Andreas Ziegler 2016-07-05 04:53:56 +02:00
parent 664503a54d
commit 0c2d3603d1
1 changed files with 3 additions and 3 deletions

View File

@ -670,13 +670,13 @@ CREATE TABLE IF NOT EXISTS `users` (
`invited_by` int(11) NOT NULL DEFAULT 0,
`gpgkey` longtext COLLATE utf8_bin,
`certif_public` longtext COLLATE utf8_bin DEFAULT NULL,
`nids_sid` int(15) NOT NULL DEFAULT '0',
`nids_sid` int(15) NOT NULL DEFAULT 0,
`termsaccepted` tinyint(1) NOT NULL DEFAULT 0,
`newsread` int(11) unsigned DEFAULT '0',
`newsread` int(11) unsigned DEFAULT 0,
`role_id` int(11) NOT NULL DEFAULT 0,
`change_pw` tinyint(4) NOT NULL DEFAULT 0,
`contactalert` tinyint(1) NOT NULL DEFAULT 0,
`disabled` BOOLEAN 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,