6 lines
102 B
SQL
6 lines
102 B
SQL
CREATE TABLE IF NOT EXISTS invitations (
|
|
token bytea PRIMARY KEY,
|
|
user_id bigint NOT NULL
|
|
);
|
|
|