PronounsPage/migrations/024-emails.sql
2021-04-13 18:29:46 +02:00

11 lines
114 B
SQL

-- Up
CREATE TABLE emails (
email TEXT NOT NULL,
sentAt INTEGER NOT NULL
);
-- Down
DROP TABLE emails;