aboutsummaryrefslogtreecommitdiffstats
path: root/migrations/20260202155202_account.sql
diff options
context:
space:
mode:
authorrtkay123 <dev@kanjala.com>2026-02-02 18:21:48 +0200
committerrtkay123 <dev@kanjala.com>2026-02-02 18:21:48 +0200
commitcdcf6a4caa66095c07ef9d6d3ebc7c795a046e1e (patch)
treedaae5af9a68d610ad6fd7c2cc0f7e97a714be6a0 /migrations/20260202155202_account.sql
parent1f76530bc5001d9a9088f269db6c03cf287b67e6 (diff)
downloadsellershut-cdcf6a4caa66095c07ef9d6d3ebc7c795a046e1e.tar.bz2
sellershut-cdcf6a4caa66095c07ef9d6d3ebc7c795a046e1e.zip
chore: initial migrations
Diffstat (limited to 'migrations/20260202155202_account.sql')
-rw-r--r--migrations/20260202155202_account.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/migrations/20260202155202_account.sql b/migrations/20260202155202_account.sql
new file mode 100644
index 0000000..3d82c7f
--- /dev/null
+++ b/migrations/20260202155202_account.sql
@@ -0,0 +1,9 @@
+create extension if not exists citext;
+
+create table account (
+ provider_id text not null,
+ provider_user_id text not null,
+ email citext not null,
+ ap_id text not null references profile(ap_id) on delete cascade,
+ primary key (provider_id, provider_user_id)
+)