From e26d87f4fa18999c6bcfbcf32cfa85adab11acdd Mon Sep 17 00:00:00 2001 From: rtkay123 Date: Sat, 26 Jul 2025 19:24:38 +0200 Subject: feat(auth): create user call --- crates/auth/migrations/20250723121223_oauth_account.sql | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 crates/auth/migrations/20250723121223_oauth_account.sql (limited to 'crates/auth/migrations/20250723121223_oauth_account.sql') 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) -); -- cgit v1.2.3