This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/migrations/024-emails.sql

11 lines
114 B
SQL

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