-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathauth.ts
51 lines (47 loc) · 1.56 KB
/
auth.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import type { AdapterAccount } from "@auth/core/adapters";
import { integer, primaryKey, text, timestamp } from "drizzle-orm/pg-core";
import { projectTable } from "./_table";
export const users = projectTable("user", {
id: text("id").notNull().primaryKey(),
name: text("name").notNull(),
email: text("email").notNull(),
emailVerified: timestamp("emailVerified", { mode: "date" }),
image: text("image"),
});
export const accounts = projectTable(
"account",
{
userId: text("userId").notNull(),
type: text("type").$type<AdapterAccount["type"]>().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 = projectTable("session", {
sessionToken: text("sessionToken").notNull().primaryKey(),
userId: text("userId").notNull(),
expires: timestamp("expires", { mode: "date" }).notNull(),
});
export const verificationTokens = projectTable(
"verificationToken",
{
identifier: text("identifier").notNull(),
token: text("token").notNull(),
expires: timestamp("expires", { mode: "date" }).notNull(),
},
(vt) => ({
compoundKey: primaryKey({ columns: [vt.identifier, vt.token] }),
}),
);