trifid/trifid-api/migrations/20230204185754_magic_links.sql

5 lines
159 B
MySQL
Raw Normal View History

CREATE TABLE magic_links (
2023-02-06 03:45:00 +00:00
id VARCHAR(39) NOT NULL PRIMARY KEY UNIQUE,
user_id SERIAL NOT NULL REFERENCES users(id),
expires_on INTEGER NOT NULL
);