| 12345678910111213141516 |
- import { text, pgTable, varchar, uniqueIndex } from "drizzle-orm/pg-core"
- import { timestamps, utc, workspaceColumns } from "../drizzle/types"
- import { workspaceIndexes } from "./workspace.sql"
- export const KeyTable = pgTable(
- "key",
- {
- ...workspaceColumns,
- ...timestamps,
- userID: text("user_id").notNull(),
- name: varchar("name", { length: 255 }).notNull(),
- key: varchar("key", { length: 255 }).notNull(),
- timeUsed: utc("time_used"),
- },
- (table) => [...workspaceIndexes(table), uniqueIndex("global_key").on(table.key)],
- )
|