This repository has been archived on 2024-05-09. You can view files and clone it, but cannot push or open issues or pull requests.
icytv/migrations/004_email_subscribe.sql

15 lines
243 B
MySQL
Raw Permalink Normal View History

2021-02-13 18:31:32 +00:00
-- Up
CREATE TABLE emailsub (
id INTEGER PRIMARY KEY,
unsubkey TEXT NOT NULL,
activatekey TEXT NOT NULL,
email TEXT NOT NULL,
uuid TEXT NOT NULL,
active INTEGER NOT NULL,
created_at INTEGER NOT NULL
);
-- Down
DROP TABLE emailsub;