https://sqlite.org/lang_datefunc.html
Note: there is no “datetime” type, but as documented in the type affinities page, SQLite accepts it and converts the input to a numeric type internally.
CREATE TABLE "SAMPLE_TABLE" (
"title" TEXT NOT NULL,
"inserted_date" DATETIME DEFAULT CURRENT_TIMESTAMP
)