chore: Remove default values from fields of database models

This commit is contained in:
Faruk AYDIN
2022-10-19 19:22:11 +02:00
parent dc0f374110
commit 74aed833bf
5 changed files with 13 additions and 9 deletions

View File

@@ -12,7 +12,7 @@ class ExecutionStep extends Base {
dataIn!: IJSONObject;
dataOut!: IJSONObject;
errorDetails: IJSONObject;
status = 'failure';
status: 'success' | 'failure';
step: Step;
static tableName = 'execution_steps';