export const project = pgTable("project", {
id: serial("id").primaryKey(),
clientId: integer("client_id").notNull(),
serviceId: text("service_id").notNull(),
formData: jsonb("data").notNull(), // <---- form data store in schemalass jsonb
});
export const project = pgTable("project", {
id: serial("id").primaryKey(),
clientId: integer("client_id").notNull(),
serviceId: text("service_id").notNull(),
formData: jsonb("data").notNull(), // <---- form data store in schemalass jsonb
});