mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 04:19:20 +00:00
91 lines
3.5 KiB
Plaintext
91 lines
3.5 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(),
|
|
twoFactorEnabled: integer("two_factor_enabled", { mode: "boolean" }).default(
|
|
false,
|
|
),
|
|
username: text("username").unique(),
|
|
displayUsername: text("display_username"),
|
|
});
|
|
|
|
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 twoFactor = sqliteTable("two_factor", {
|
|
id: integer("id", { mode: "number" }).primaryKey({ autoIncrement: true }),
|
|
secret: text("secret").notNull(),
|
|
backupCodes: text("backup_codes").notNull(),
|
|
userId: integer("user_id")
|
|
.notNull()
|
|
.references(() => custom_user.id, { onDelete: "cascade" }),
|
|
});
|