From e628a29797bbe62957bc71503317ce3cbb026fb5 Mon Sep 17 00:00:00 2001 From: i332371 Date: Tue, 12 Mar 2024 14:05:46 +0530 Subject: [PATCH] fix model * removed cuid in favor of key string --- db/schema.cds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/schema.cds b/db/schema.cds index ba18daf..bd53af9 100644 --- a/db/schema.cds +++ b/db/schema.cds @@ -6,7 +6,7 @@ namespace sap.capire.incidents; * Customers using products sold by our company. * Customers can create support Incidents. */ -entity Customers : cuid, managed { +entity Customers : managed { key ID : String; firstName : String; lastName : String;