Spaces:
Sleeping
Sleeping
| import { pgTable, serial, text, timestamp } from "drizzle-orm/pg-core"; | |
| import { createInsertSchema } from "drizzle-zod"; | |
| import { z } from "zod/v4"; | |
| export const conversations = pgTable("conversations", { | |
| id: serial("id").primaryKey(), | |
| title: text("title").notNull(), | |
| createdAt: timestamp("created_at", { withTimezone: true }).defaultNow().notNull(), | |
| }); | |
| export const insertConversationSchema = createInsertSchema(conversations).omit({ | |
| id: true, | |
| createdAt: true, | |
| }); | |
| export type Conversation = typeof conversations.$inferSelect; | |
| export type InsertConversation = z.infer<typeof insertConversationSchema>; | |