aboutsummaryrefslogtreecommitdiffstats
path: root/migrations/20260210194218_oauth_account.sql
diff options
context:
space:
mode:
authorrtkay123 <dev@kanjala.com>2026-02-11 08:46:55 +0200
committerrtkay123 <dev@kanjala.com>2026-02-11 08:46:55 +0200
commit8e75d3af03fdd0e92f00de10eef0af2b093d1c7c (patch)
treedc5f04c3cc495f695a7be8ce79293d49aefdc48e /migrations/20260210194218_oauth_account.sql
parent9fd685039613d0e9aa71eabe51d3a6272a3ace21 (diff)
downloadsellershut-8e75d3af03fdd0e92f00de10eef0af2b093d1c7c.tar.bz2
sellershut-8e75d3af03fdd0e92f00de10eef0af2b093d1c7c.zip
feat: jsonb column
Diffstat (limited to 'migrations/20260210194218_oauth_account.sql')
-rw-r--r--migrations/20260210194218_oauth_account.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/migrations/20260210194218_oauth_account.sql b/migrations/20260210194218_oauth_account.sql
index ce660fe..3431f85 100644
--- a/migrations/20260210194218_oauth_account.sql
+++ b/migrations/20260210194218_oauth_account.sql
@@ -4,7 +4,7 @@ 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,
+ user_id text not null references profile(id) on delete cascade,
primary key (provider_id, provider_user_id)
);