fixed invalid default value

This commit is contained in:
printempw 2016-04-05 09:38:40 -05:00
parent ca2cd43df3
commit 3fefbff618

View File

@ -14,7 +14,7 @@ CREATE TABLE IF NOT EXISTS `{$prefix}users` (
`hash_steve` varchar(64) DEFAULT '',
`hash_alex` varchar(64) DEFAULT '',
`hash_cape` varchar(64) DEFAULT '',
`last_modified` datetime DEFAULT CURRENT_TIMESTAMP,
`last_modified` datetime,
PRIMARY KEY (`uid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;