From 51f2fd6fcaf6de7d3912f266fd85ff2386b595f0 Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Tue, 5 Dec 2023 10:53:20 +0700 Subject: Add externalId on product --- prisma/schema.prisma | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 925b07b..ef78e48 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -1,6 +1,6 @@ generator client { provider = "prisma-client-js" - output = "./generated/client" + output = "./generated/client" } datasource db { @@ -38,6 +38,7 @@ model Location { model Product { id Int @id @default(autoincrement()) + externalId String? barcode String itemCode String name String -- cgit v1.2.3