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 以上。

by typester / at 2005-10-08T00:00:00 / sqlite / Comments(0)