We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Project
Budget
1 parent 49697a8 commit 8e05c17Copy full SHA for 8e05c17
dbschema/project.esdl
@@ -60,6 +60,14 @@ module default {
60
message := "A Project's own context should be itself (no more or less)"
61
)
62
);
63
+
64
+ trigger createBudgetOnInsert after insert for each do (
65
+ insert default::Budget {
66
+ createdAt := datetime_of_statement(),
67
+ project := __new__,
68
+ projectContext := __new__.projectContext,
69
+ }
70
+ );
71
}
72
73
type TranslationProject extending Project {
0 commit comments