mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 07:04:57 +00:00
make 'default' to 'DEFAULT'
This commit is contained in:
parent
1ff7367f8b
commit
72e45f3320
|
@ -59,13 +59,13 @@ CREATE TABLE `tblUsers` (
|
|||
`language` varchar(32) NOT NULL,
|
||||
`theme` varchar(32) NOT NULL,
|
||||
`comment` text NOT NULL,
|
||||
`role` smallint(1) NOT NULL default '0',
|
||||
`hidden` smallint(1) NOT NULL default '0',
|
||||
`pwdExpiration` datetime NOT NULL default '0000-00-00 00:00:00',
|
||||
`loginfailures` tinyint(4) NOT NULL default '0',
|
||||
`disabled` smallint(1) NOT NULL default '0',
|
||||
`role` smallint(1) NOT NULL DEFAULT '0',
|
||||
`hidden` smallint(1) NOT NULL DEFAULT '0',
|
||||
`pwdExpiration` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||||
`loginfailures` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`disabled` smallint(1) NOT NULL DEFAULT '0',
|
||||
`quota` bigint(20) DEFAULT NULL,
|
||||
`homefolder` int(11) default NULL,
|
||||
`homefolder` int(11) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `login` (`login`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
|
Loading…
Reference in New Issue
Block a user