aboutsummaryrefslogtreecommitdiff
path: root/communities/174bg/174bg.net/better-auth_migrations
diff options
context:
space:
mode:
authorAlex Pooley (@zuedev) <zuedev@gmail.com>2026-05-24 13:31:54 +0100
committerAlex Pooley (@zuedev) <zuedev@gmail.com>2026-05-24 13:31:54 +0100
commitf8a415632bbbe08e51ac5944343cb0bbf092bf2f (patch)
tree80b8088ec59e11c3bd2917a7b5ee1b663dc81460 /communities/174bg/174bg.net/better-auth_migrations
parente2066f51523ecba0f1991edd0c2b94f8f4cd1820 (diff)
downloadunnamed-group-f8a415632bbbe08e51ac5944343cb0bbf092bf2f.tar
unnamed-group-f8a415632bbbe08e51ac5944343cb0bbf092bf2f.tar.gz
unnamed-group-f8a415632bbbe08e51ac5944343cb0bbf092bf2f.tar.bz2
unnamed-group-f8a415632bbbe08e51ac5944343cb0bbf092bf2f.tar.xz
unnamed-group-f8a415632bbbe08e51ac5944343cb0bbf092bf2f.zip
remove all except handbook
Diffstat (limited to 'communities/174bg/174bg.net/better-auth_migrations')
-rw-r--r--communities/174bg/174bg.net/better-auth_migrations/2026-05-13T15-14-44.314Z.sql13
1 files changed, 0 insertions, 13 deletions
diff --git a/communities/174bg/174bg.net/better-auth_migrations/2026-05-13T15-14-44.314Z.sql b/communities/174bg/174bg.net/better-auth_migrations/2026-05-13T15-14-44.314Z.sql
deleted file mode 100644
index 5a2fae9..0000000
--- a/communities/174bg/174bg.net/better-auth_migrations/2026-05-13T15-14-44.314Z.sql
+++ /dev/null
@@ -1,13 +0,0 @@
-create table "user" ("id" text not null primary key, "name" text not null, "email" text not null unique, "emailVerified" boolean not null, "image" text, "createdAt" timestamptz default CURRENT_TIMESTAMP not null, "updatedAt" timestamptz default CURRENT_TIMESTAMP not null);
-
-create table "session" ("id" text not null primary key, "expiresAt" timestamptz not null, "token" text not null unique, "createdAt" timestamptz default CURRENT_TIMESTAMP not null, "updatedAt" timestamptz not null, "ipAddress" text, "userAgent" text, "userId" text not null references "user" ("id") on delete cascade);
-
-create table "account" ("id" text not null primary key, "accountId" text not null, "providerId" text not null, "userId" text not null references "user" ("id") on delete cascade, "accessToken" text, "refreshToken" text, "idToken" text, "accessTokenExpiresAt" timestamptz, "refreshTokenExpiresAt" timestamptz, "scope" text, "password" text, "createdAt" timestamptz default CURRENT_TIMESTAMP not null, "updatedAt" timestamptz not null);
-
-create table "verification" ("id" text not null primary key, "identifier" text not null, "value" text not null, "expiresAt" timestamptz not null, "createdAt" timestamptz default CURRENT_TIMESTAMP not null, "updatedAt" timestamptz default CURRENT_TIMESTAMP not null);
-
-create index "session_userId_idx" on "session" ("userId");
-
-create index "account_userId_idx" on "account" ("userId");
-
-create index "verification_identifier_idx" on "verification" ("identifier"); \ No newline at end of file