hotel/migrations/2023-03-26-024710_create_3f.../up.sql

6 lines
182 B
SQL

CREATE TABLE codes_3fa (
id SERIAL NOT NULL PRIMARY KEY,
code VARCHAR(10) NOT NULL UNIQUE,
user_id SERIAL NOT NULL REFERENCES users(id),
expires_on BIGINT NOT NULL
);