CREATE TABLE IF NOT EXISTS user( id integer primary key autoincrement, email text, name text, created_at text ); INSERT INTO user VALUES(1,'y2sunlight@sample.com','y2sunlight', datetime('now'));