mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-13 23:41:00 +00:00
9 lines
311 B
SQL
9 lines
311 B
SQL
CREATE TABLE email_signups (
|
|
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
|
email VARCHAR NOT NULL,
|
|
token VARCHAR NOT NULL,
|
|
expiration_date TIMESTAMP NOT NULL
|
|
);
|
|
|
|
CREATE INDEX email_signups_token ON email_signups (token);
|
|
CREATE UNIQUE INDEX email_signups_token_requests_email ON email_signups (email);
|