pr comments

This commit is contained in:
Cam Otts
2023-01-09 13:23:02 -06:00
parent e5b749be71
commit 0734e7b511
10 changed files with 69 additions and 59 deletions

View File

@ -5,12 +5,10 @@
---
create table invites (
id serial primary key,
token varchar(32) not null unique,
token_status varchar(1024) not null unique,
created_at timestamp not null default(current_timestamp),
updated_at timestamp not null default(current_timestamp),
id serial primary key,
token varchar(32) not null unique,
created_at timestamptz not null default(current_timestamp),
updated_at timestamptz not null default(current_timestamp),
constraint chk_token check(token <> ''),
constraint chk_status check(token_status <> '')
constraint chk_token check(token <> '')
);