| import { pgTable, serial, text, timestamp } from "drizzle-orm/pg-core"; | |
| export const configTable = pgTable("config", { | |
| id: serial("id").primaryKey(), | |
| key: text("key").notNull().unique(), | |
| value: text("value").notNull(), | |
| updatedAt: timestamp("updated_at").defaultNow().notNull(), | |
| }); | |