diff options
Diffstat (limited to 'migrations')
| -rw-r--r-- | migrations/20241012012022_invite.sql | 10 |
1 files changed, 10 insertions, 0 deletions
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 +); |
