Advertisement
Guest User

Untitled

a guest
Jun 8th, 2024
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import {
  2.   boolean,
  3.   integer,
  4.   pgTable,
  5.   primaryKey,
  6.   text,
  7.   timestamp,
  8. } from "drizzle-orm/pg-core";
  9. import type { AdapterAccountType } from "next-auth/adapters";
  10.  
  11. export const users = pgTable("user", {
  12.   id: text("id")
  13.     .primaryKey()
  14.     .$defaultFn(() => crypto.randomUUID()),
  15.   name: text("name"),
  16.   email: text("email").notNull(),
  17.   emailVerified: timestamp("emailVerified", { mode: "date" }),
  18.   image: text("image"),
  19. });
  20.  
  21. export const accounts = pgTable(
  22.   "account",
  23.   {
  24.     userId: text("userId")
  25.       .notNull()
  26.       .references(() => users.id, { onDelete: "cascade" }),
  27.     type: text("type").$type<AdapterAccountType>().notNull(),
  28.     provider: text("provider").notNull(),
  29.     providerAccountId: text("providerAccountId").notNull(),
  30.     refresh_token: text("refresh_token"),
  31.     access_token: text("access_token"),
  32.     expires_at: integer("expires_at"),
  33.     token_type: text("token_type"),
  34.     scope: text("scope"),
  35.     id_token: text("id_token"),
  36.     session_state: text("session_state"),
  37.   },
  38.   (account) => ({
  39.     pk: primaryKey({
  40.       columns: [account.provider, account.providerAccountId],
  41.     }),
  42.   }),
  43. );
  44.  
  45. export const sessions = pgTable("session", {
  46.   sessionToken: text("sessionToken").primaryKey(),
  47.   userId: text("userId")
  48.     .notNull()
  49.     .references(() => users.id, { onDelete: "cascade" }),
  50.   expires: timestamp("expires", { mode: "date" }).notNull(),
  51. });
  52.  
  53. export const verificationTokens = pgTable(
  54.   "verificationToken",
  55.   {
  56.     identifier: text("identifier").notNull(),
  57.     token: text("token").notNull(),
  58.     expires: timestamp("expires", { mode: "date" }).notNull(),
  59.   },
  60.   (verificationToken) => ({
  61.     pk: primaryKey({
  62.       columns: [verificationToken.identifier, verificationToken.token],
  63.     }),
  64.   }),
  65. );
  66.  
  67. export const authenticators = pgTable(
  68.   "authenticator",
  69.   {
  70.     credentialID: text("credentialID").notNull().unique(),
  71.     userId: text("userId")
  72.       .notNull()
  73.       .references(() => users.id, { onDelete: "cascade" }),
  74.     providerAccountId: text("providerAccountId").notNull(),
  75.     credentialPublicKey: text("credentialPublicKey").notNull(),
  76.     counter: integer("counter").notNull(),
  77.     credentialDeviceType: text("credentialDeviceType").notNull(),
  78.     credentialBackedUp: boolean("credentialBackedUp").notNull(),
  79.     transports: text("transports"),
  80.   },
  81.   (authenticator) => ({
  82.     pk: primaryKey({
  83.       columns: [authenticator.userId, authenticator.credentialID],
  84.     }),
  85.   }),
  86. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement