Files
cloud-cap-samples/bookstore/db/schema.cds
2021-11-04 10:37:33 +01:00

9 lines
297 B
Plaintext

using { sap.capire.bookshop } from '@capire/bookshop';
// Forward-declare calculated fields to be filled in database-specific ways
// TODO find a better way to have 'default' fields that still can be overwritten.
extend bookshop.Authors with {
virtual age: Integer;
virtual lifetime: String;
}