filite/migrations/2019-10-07-174500_create_files/up.sql

6 lines
144 B
SQL

CREATE TABLE files (
id INTEGER NOT NULL PRIMARY KEY,
filepath TEXT NOT NULL,
created INTEGER NOT NULL DEFAULT (strftime('%s', 'now'))
);