/** * Files. Source of truth: `db/migrations/0001_init.sql`. */ import { pgTable, uuid, text, integer, timestamp, index, } from "drizzle-orm/pg-core"; import { brands } from "./brands"; export const files = pgTable( "files", { id: uuid("id").primaryKey().defaultRandom(), brandId: uuid("brand_id").references(() => brands.id, { onDelete: "cascade", }), storageKey: text("storage_key").notNull().unique(), mimeType: text("mime_type").notNull(), sizeBytes: integer("size_bytes").notNull(), purpose: text("purpose"), uploadedBy: uuid("uploaded_by"), // FK to neon_auth.user(id) — plain UUID, enforced at DB level createdAt: timestamp("created_at", { withTimezone: true }) .notNull() .defaultNow(), }, (t) => ({ brandIdx: index("files_brand_idx").on(t.brandId), }), ); export type File = typeof files.$inferSelect; export type NewFile = typeof files.$inferInsert;