summaryrefslogtreecommitdiff
path: root/migrations/20241012012022_invite.sql
blob: 13004b5910fd1ff6d89b61fcd086e98337fb992f (plain)
1
2
3
4
5
6
7
8
9
10
create table invite (
	id text
		primary key
		not null,
	issuer text
		not null
		references login (id),
	issued_at text
		not null
);