Is it possible in a sqlite database to craete a table that has a timestamp column that default to DATETIME(\'now\') ?
DATETIME(\'now\')
Like this:
CREATE
i believe you can use
CREATE TABLE test ( id INTEGER PRIMARY KEY AUTOINCREMENT, t TIMESTAMP DEFAULT CURRENT_TIMESTAMP );
as of version 3.1 (source)