File size: 291 Bytes
5ef6e9d | 1 2 3 4 5 6 7 8 9 | 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(),
});
|