mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-14 07:51:01 +00:00
9 lines
287 B
SQL
9 lines
287 B
SQL
CREATE TABLE email_signups (
|
|
id SERIAL PRIMARY KEY,
|
|
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);
|