filite/migrations/2019-10-07-174501_create_links/up.sql

6 lines
143 B
SQL

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