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
MySQL
Raw Normal View History

2021-04-13 02:29:46 -07:00
-- Up
CREATE TABLE emails (
email TEXT NOT NULL,
sentAt INTEGER NOT NULL
);
-- Down
DROP TABLE emails;