- Set DEFAULT NULL for users.last_login

This commit is contained in:
alecpl
2010-04-28 10:34:33 +00:00
parent 0f3764e592
commit e2402ef99a
7 changed files with 51 additions and 4 deletions

View File

@@ -92,7 +92,7 @@ CREATE TABLE users (
mail_host varchar(128) NOT NULL default '',
alias varchar(128) NOT NULL default '',
created datetime NOT NULL default '0000-00-00 00:00:00',
last_login datetime NOT NULL default '0000-00-00 00:00:00',
last_login datetime DEFAULT NULL,
language varchar(5),
preferences text NOT NULL default ''
);