From 812f1cafe3f8a68bf45b677fade7417c30d92eac Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Fri, 11 Oct 2024 22:40:03 -0400 Subject: Create APIs for inviting users. --- migrations/20241012012022_invite.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 migrations/20241012012022_invite.sql (limited to 'migrations/20241012012022_invite.sql') diff --git a/migrations/20241012012022_invite.sql b/migrations/20241012012022_invite.sql new file mode 100644 index 0000000..13004b5 --- /dev/null +++ b/migrations/20241012012022_invite.sql @@ -0,0 +1,10 @@ +create table invite ( + id text + primary key + not null, + issuer text + not null + references login (id), + issued_at text + not null +); -- cgit v1.2.3