summaryrefslogtreecommitdiffstats
path: root/crates/auth/migrations/20250723121223_oauth_account.sql
diff options
context:
space:
mode:
Diffstat (limited to 'crates/auth/migrations/20250723121223_oauth_account.sql')
-rw-r--r--crates/auth/migrations/20250723121223_oauth_account.sql7
1 files changed, 0 insertions, 7 deletions
diff --git a/crates/auth/migrations/20250723121223_oauth_account.sql b/crates/auth/migrations/20250723121223_oauth_account.sql
deleted file mode 100644
index 826fbcc..0000000
--- a/crates/auth/migrations/20250723121223_oauth_account.sql
+++ /dev/null
@@ -1,7 +0,0 @@
-CREATE TABLE oauth_account (
- provider_id text not null,
- provider_user_id text not null,
- user_id uuid not null,
- primary key (provider_id, provider_user_id),
- foreign key (user_id) references auth_user(id)
-);