]> git.wh0rd.org Git - tt-rss.git/commitdiff
change last_login type for mysql
authorAndrew Dolgov <fox@madoka.spb.ru>
Fri, 18 Nov 2005 09:14:24 +0000 (10:14 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Fri, 18 Nov 2005 09:14:24 +0000 (10:14 +0100)
schema/ttrss_schema_mysql.sql

index 5e8b544cea7806e904da1dc460dd9df4b0f117db..5f06b186a497e914c59376879e661a94aac4854e 100644 (file)
@@ -10,7 +10,7 @@ drop table if exists ttrss_users;
 create table ttrss_users (id integer primary key not null auto_increment,
        login varchar(120) not null unique,
        pwd_hash varchar(250) not null,
-       last_login timestamp default null,
+       last_login datetime default null,
        access_level integer not null default 0) TYPE=InnoDB;
 
 insert into ttrss_users (login,pwd_hash,access_level) values ('admin', 'password', 10);