312c2e2
1
2
3
4
5
6
7
8
9
import { pgTable, text } from "drizzle-orm/pg-core"; export const appConfigTable = pgTable("app_config", { key: text("key").primaryKey(), value: text("value").notNull(), }); export type AppConfig = typeof appConfigTable.$inferSelect;