kioai / lib /db /src /schema /config.ts
kinaiok
Initial deployment setup for Hugging Face Spaces
5ef6e9d
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(),
});