mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 04:19:20 +00:00
93 lines
3.6 KiB
Plaintext
93 lines
3.6 KiB
Plaintext
import { sql } from "drizzle-orm";
|
|
import { sqliteTable, text, integer } from "drizzle-orm/sqlite-core";
|
|
|
|
export const custom_user = sqliteTable("custom_user", {
|
|
id: integer("id", { mode: "number" }).primaryKey({ autoIncrement: true }),
|
|
name: text("name").notNull(),
|
|
email: text("email").notNull().unique(),
|
|
emailVerified: integer("email_verified", { mode: "boolean" })
|
|
.default(false)
|
|
.notNull(),
|
|
image: text("image"),
|
|
createdAt: integer("created_at", { mode: "timestamp_ms" })
|
|
.default(sql`(cast(unixepoch('subsecond') * 1000 as integer))`)
|
|
.notNull(),
|
|
updatedAt: integer("updated_at", { mode: "timestamp_ms" })
|
|
.default(sql`(cast(unixepoch('subsecond') * 1000 as integer))`)
|
|
.$onUpdate(() => /* @__PURE__ */ new Date())
|
|
.notNull(),
|
|
});
|
|
|
|
export const custom_session = sqliteTable("custom_session", {
|
|
id: integer("id", { mode: "number" }).primaryKey({ autoIncrement: true }),
|
|
expiresAt: integer("expires_at", { mode: "timestamp_ms" }).notNull(),
|
|
token: text("token").notNull().unique(),
|
|
createdAt: integer("created_at", { mode: "timestamp_ms" })
|
|
.default(sql`(cast(unixepoch('subsecond') * 1000 as integer))`)
|
|
.notNull(),
|
|
updatedAt: integer("updated_at", { mode: "timestamp_ms" })
|
|
.$onUpdate(() => /* @__PURE__ */ new Date())
|
|
.notNull(),
|
|
ipAddress: text("ip_address"),
|
|
userAgent: text("user_agent"),
|
|
userId: integer("user_id")
|
|
.notNull()
|
|
.references(() => custom_user.id, { onDelete: "cascade" }),
|
|
});
|
|
|
|
export const custom_account = sqliteTable("custom_account", {
|
|
id: integer("id", { mode: "number" }).primaryKey({ autoIncrement: true }),
|
|
accountId: text("account_id").notNull(),
|
|
providerId: text("provider_id").notNull(),
|
|
userId: integer("user_id")
|
|
.notNull()
|
|
.references(() => custom_user.id, { onDelete: "cascade" }),
|
|
accessToken: text("access_token"),
|
|
refreshToken: text("refresh_token"),
|
|
idToken: text("id_token"),
|
|
accessTokenExpiresAt: integer("access_token_expires_at", {
|
|
mode: "timestamp_ms",
|
|
}),
|
|
refreshTokenExpiresAt: integer("refresh_token_expires_at", {
|
|
mode: "timestamp_ms",
|
|
}),
|
|
scope: text("scope"),
|
|
password: text("password"),
|
|
createdAt: integer("created_at", { mode: "timestamp_ms" })
|
|
.default(sql`(cast(unixepoch('subsecond') * 1000 as integer))`)
|
|
.notNull(),
|
|
updatedAt: integer("updated_at", { mode: "timestamp_ms" })
|
|
.$onUpdate(() => /* @__PURE__ */ new Date())
|
|
.notNull(),
|
|
});
|
|
|
|
export const custom_verification = sqliteTable("custom_verification", {
|
|
id: integer("id", { mode: "number" }).primaryKey({ autoIncrement: true }),
|
|
identifier: text("identifier").notNull(),
|
|
value: text("value").notNull(),
|
|
expiresAt: integer("expires_at", { mode: "timestamp_ms" }).notNull(),
|
|
createdAt: integer("created_at", { mode: "timestamp_ms" })
|
|
.default(sql`(cast(unixepoch('subsecond') * 1000 as integer))`)
|
|
.notNull(),
|
|
updatedAt: integer("updated_at", { mode: "timestamp_ms" })
|
|
.default(sql`(cast(unixepoch('subsecond') * 1000 as integer))`)
|
|
.$onUpdate(() => /* @__PURE__ */ new Date())
|
|
.notNull(),
|
|
});
|
|
|
|
export const passkey = sqliteTable("passkey", {
|
|
id: integer("id", { mode: "number" }).primaryKey({ autoIncrement: true }),
|
|
name: text("name"),
|
|
publicKey: text("public_key").notNull(),
|
|
userId: integer("user_id")
|
|
.notNull()
|
|
.references(() => custom_user.id, { onDelete: "cascade" }),
|
|
credentialID: text("credential_id").notNull(),
|
|
counter: integer("counter").notNull(),
|
|
deviceType: text("device_type").notNull(),
|
|
backedUp: integer("backed_up", { mode: "boolean" }).notNull(),
|
|
transports: text("transports"),
|
|
createdAt: integer("created_at", { mode: "timestamp_ms" }),
|
|
aaguid: text("aaguid"),
|
|
});
|