|
@@ -304,12 +304,12 @@ export const knowledgeSuggestions = chatbotSchema.table("knowledge_suggestions",
|
|
|
*/
|
|
*/
|
|
|
export const knowledgeProducts = chatbotSchema.table("knowledge_products", {
|
|
export const knowledgeProducts = chatbotSchema.table("knowledge_products", {
|
|
|
id: serial("id").primaryKey(),
|
|
id: serial("id").primaryKey(),
|
|
|
- model: varchar("model", { length: 100 }).notNull(),
|
|
|
|
|
|
|
+ model: text("model").notNull(),
|
|
|
description: text("description"),
|
|
description: text("description"),
|
|
|
categories: text("categories"),
|
|
categories: text("categories"),
|
|
|
- collection: varchar("collection", { length: 100 }),
|
|
|
|
|
- price: varchar("price", { length: 50 }),
|
|
|
|
|
- availability: varchar("availability", { length: 50 }),
|
|
|
|
|
|
|
+ collection: text("collection"),
|
|
|
|
|
+ price: text("price"),
|
|
|
|
|
+ availability: text("availability"),
|
|
|
features: text("features"),
|
|
features: text("features"),
|
|
|
dimensions: text("dimensions"),
|
|
dimensions: text("dimensions"),
|
|
|
imageUrl: text("image_url"),
|
|
imageUrl: text("image_url"),
|