This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
-- AlterTable
|
||||
ALTER TABLE "exchange_products" ADD COLUMN "image_url" VARCHAR(500);
|
||||
@@ -58,6 +58,7 @@ model Product {
|
||||
name String @db.VarChar(255)
|
||||
categoryName String @default("") @map("category_name") @db.VarChar(255)
|
||||
unit String @default("ton") @db.VarChar(20)
|
||||
imageUrl String? @map("image_url") @db.VarChar(500)
|
||||
description String?
|
||||
isActive Boolean @default(true) @map("is_active")
|
||||
createdAt DateTime @default(now()) @map("created_at")
|
||||
|
||||
Reference in New Issue
Block a user