SQLiteでMySQLのtimestamp not nullみたいな挙動をさせる
create table sessions (
id varchar(32) not null,
a_session text,
mtime timestamp default CURRENT_TIMESTAMP
);
ref: http://www.sqlite.org/lang_createtable.htmlより。version 3.1.0 以上。
create table sessions (
id varchar(32) not null,
a_session text,
mtime timestamp default CURRENT_TIMESTAMP
);
ref: http://www.sqlite.org/lang_createtable.htmlより。version 3.1.0 以上。