fb / lib /db /src /schema /appConfig.ts
sare26's picture
Upload 83 files
312c2e2 verified
Raw
History Blame Contribute Delete
240 Bytes
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;