SQLite FAQ: How do I default a SQLite datetime field to the current date and time? (i.e., how do I default it to now?)
Just use the SQLite current_timestamp function, like this:
last_updated datetime default current_timestamp
In a more complete create table example I just used on an Android project, this looks like this: