From 3682de81bd3f4f00252c6f1391f373cb86d3e4c6 Mon Sep 17 00:00:00 2001 From: Advait Dhamnaskar Date: Tue, 9 Jun 2026 10:46:10 +0000 Subject: [PATCH] Added email field to Authors --- db/schema.cds | 1 + 1 file changed, 1 insertion(+) diff --git a/db/schema.cds b/db/schema.cds index e8decf2..5a22a13 100644 --- a/db/schema.cds +++ b/db/schema.cds @@ -15,6 +15,7 @@ entity Books : managed { entity Authors : managed { key ID : Integer; name : String @mandatory; + email : String(255); dateOfBirth : Date; dateOfDeath : Date; placeOfBirth : String;