mirror of
https://github.com/get-drexa/drive.git
synced 2025-12-01 05:51:39 +00:00
71 lines
2.2 KiB
TypeScript
71 lines
2.2 KiB
TypeScript
|
|
// This file is auto-generated. Do not edit this file manually.
|
||
|
|
// To regenerate the schema, run:
|
||
|
|
// `npx @better-auth/cli generate --output undefined -y`
|
||
|
|
|
||
|
|
import { defineSchema, defineTable } from "convex/server";
|
||
|
|
import { v } from "convex/values";
|
||
|
|
|
||
|
|
export const tables = {
|
||
|
|
user: defineTable({
|
||
|
|
name: v.string(),
|
||
|
|
email: v.string(),
|
||
|
|
emailVerified: v.boolean(),
|
||
|
|
image: v.optional(v.union(v.null(), v.string())),
|
||
|
|
createdAt: v.number(),
|
||
|
|
updatedAt: v.number(),
|
||
|
|
userId: v.optional(v.union(v.null(), v.string())),
|
||
|
|
})
|
||
|
|
.index("email_name", ["email","name"])
|
||
|
|
.index("name", ["name"])
|
||
|
|
.index("userId", ["userId"]),
|
||
|
|
session: defineTable({
|
||
|
|
expiresAt: v.number(),
|
||
|
|
token: v.string(),
|
||
|
|
createdAt: v.number(),
|
||
|
|
updatedAt: v.number(),
|
||
|
|
ipAddress: v.optional(v.union(v.null(), v.string())),
|
||
|
|
userAgent: v.optional(v.union(v.null(), v.string())),
|
||
|
|
userId: v.string(),
|
||
|
|
})
|
||
|
|
.index("expiresAt", ["expiresAt"])
|
||
|
|
.index("expiresAt_userId", ["expiresAt","userId"])
|
||
|
|
.index("token", ["token"])
|
||
|
|
.index("userId", ["userId"]),
|
||
|
|
account: defineTable({
|
||
|
|
accountId: v.string(),
|
||
|
|
providerId: v.string(),
|
||
|
|
userId: v.string(),
|
||
|
|
accessToken: v.optional(v.union(v.null(), v.string())),
|
||
|
|
refreshToken: v.optional(v.union(v.null(), v.string())),
|
||
|
|
idToken: v.optional(v.union(v.null(), v.string())),
|
||
|
|
accessTokenExpiresAt: v.optional(v.union(v.null(), v.number())),
|
||
|
|
refreshTokenExpiresAt: v.optional(v.union(v.null(), v.number())),
|
||
|
|
scope: v.optional(v.union(v.null(), v.string())),
|
||
|
|
password: v.optional(v.union(v.null(), v.string())),
|
||
|
|
createdAt: v.number(),
|
||
|
|
updatedAt: v.number(),
|
||
|
|
})
|
||
|
|
.index("accountId", ["accountId"])
|
||
|
|
.index("accountId_providerId", ["accountId","providerId"])
|
||
|
|
.index("providerId_userId", ["providerId","userId"])
|
||
|
|
.index("userId", ["userId"]),
|
||
|
|
verification: defineTable({
|
||
|
|
identifier: v.string(),
|
||
|
|
value: v.string(),
|
||
|
|
expiresAt: v.number(),
|
||
|
|
createdAt: v.number(),
|
||
|
|
updatedAt: v.number(),
|
||
|
|
})
|
||
|
|
.index("expiresAt", ["expiresAt"])
|
||
|
|
.index("identifier", ["identifier"]),
|
||
|
|
jwks: defineTable({
|
||
|
|
publicKey: v.string(),
|
||
|
|
privateKey: v.string(),
|
||
|
|
createdAt: v.number(),
|
||
|
|
}),
|
||
|
|
};
|
||
|
|
|
||
|
|
const schema = defineSchema(tables);
|
||
|
|
|
||
|
|
export default schema;
|