ergebnisformular fast fertig
All checks were successful
Build and push / Pulling repo on server (push) Successful in 3s

This commit is contained in:
2023-10-31 11:49:20 +00:00
parent d96dc2fae3
commit a19cc42d69
3 changed files with 34 additions and 18 deletions

View File

@ -8,7 +8,7 @@ class Result extends Model
'run' => ['type' => 'text', 'required'], //run ID
'user' => ['type' => 'text', 'required'], //user ID
'disqualified' => ['type' => 'bool'],
'disqualified' => ['type' => 'bool','default'=>0],
'refusals' => ['type' => 'int','default'=>0],
'errors' => ['type' => 'int','default'=>0],
'timefaults' => ['type' => 'int','default'=>0],
@ -21,6 +21,7 @@ class Result extends Model
'photos' => ['type' => 'array','default'=>[]],
'videos' => ['type' => 'array','default'=>[]],
'memo' => ['type' => 'text'],
'public' => ['type' => 'bool','default'=>1],
);