mirror of
https://github.com/beilunyang/moemail.git
synced 2025-09-26 19:41:22 +08:00
69 lines
2.3 KiB
TypeScript
69 lines
2.3 KiB
TypeScript
import { integer, sqliteTable, text, primaryKey } from "drizzle-orm/sqlite-core"
|
|
import type { AdapterAccountType } from "next-auth/adapters"
|
|
|
|
// https://authjs.dev/getting-started/adapters/drizzle
|
|
export const users = sqliteTable("user", {
|
|
id: text("id")
|
|
.primaryKey()
|
|
.$defaultFn(() => crypto.randomUUID()),
|
|
name: text("name"),
|
|
email: text("email").unique(),
|
|
emailVerified: integer("emailVerified", { mode: "timestamp_ms" }),
|
|
image: text("image"),
|
|
})
|
|
|
|
export const accounts = sqliteTable(
|
|
"account",
|
|
{
|
|
userId: text("userId")
|
|
.notNull()
|
|
.references(() => users.id, { onDelete: "cascade" }),
|
|
type: text("type").$type<AdapterAccountType>().notNull(),
|
|
provider: text("provider").notNull(),
|
|
providerAccountId: text("providerAccountId").notNull(),
|
|
refresh_token: text("refresh_token"),
|
|
access_token: text("access_token"),
|
|
expires_at: integer("expires_at"),
|
|
token_type: text("token_type"),
|
|
scope: text("scope"),
|
|
id_token: text("id_token"),
|
|
session_state: text("session_state"),
|
|
},
|
|
(account) => ({
|
|
compoundKey: primaryKey({
|
|
columns: [account.provider, account.providerAccountId],
|
|
}),
|
|
})
|
|
)
|
|
|
|
export const sessions = sqliteTable("session", {
|
|
sessionToken: text("sessionToken").primaryKey(),
|
|
userId: text("userId")
|
|
.notNull()
|
|
.references(() => users.id, { onDelete: "cascade" }),
|
|
expires: integer("expires", { mode: "timestamp_ms" }).notNull(),
|
|
})
|
|
|
|
export const emails = sqliteTable("email", {
|
|
id: text("id").primaryKey().$defaultFn(() => crypto.randomUUID()),
|
|
address: text("address").notNull().unique(),
|
|
userId: text("userId").references(() => users.id, { onDelete: "cascade" }),
|
|
createdAt: integer("created_at", { mode: "timestamp_ms" })
|
|
.notNull()
|
|
.$defaultFn(() => new Date()),
|
|
expiresAt: integer("expires_at", { mode: "timestamp_ms" }).notNull(),
|
|
})
|
|
|
|
export const messages = sqliteTable("message", {
|
|
id: text("id").primaryKey().$defaultFn(() => crypto.randomUUID()),
|
|
emailId: text("emailId")
|
|
.notNull()
|
|
.references(() => emails.id, { onDelete: "cascade" }),
|
|
fromAddress: text("from_address").notNull(),
|
|
subject: text("subject").notNull(),
|
|
content: text("content").notNull(),
|
|
html: text("html"),
|
|
receivedAt: integer("received_at", { mode: "timestamp_ms" })
|
|
.notNull()
|
|
.$defaultFn(() => new Date()),
|
|
}) |