added default

This commit is contained in:
D065023
2020-01-29 15:18:20 +01:00
parent 19b09645db
commit 85498a9875

View File

@@ -35,7 +35,7 @@ entity Authors : managed {
entity Orders : cuid, managed {
OrderNo : String @title : 'Order Number'; //> readable key
status : Status;
status : Status default 'processing';
Items : Composition of many OrderItems
on Items.parent = $self;
total : Decimal(9, 2)@readonly;