Fix servers not being marked as install failed

This commit is contained in:
Dane Everitt 2019-03-03 13:44:28 -08:00
parent cf31d4276c
commit f15449f17b
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
3 changed files with 39 additions and 15 deletions

View file

@ -87,7 +87,7 @@ class Server extends Model implements CleansAttributes, ValidableContract
'startup' => 'string',
'skip_scripts' => 'boolean',
'image' => 'string|max:255',
'installed' => 'boolean',
'installed' => 'in:0,1,2',
'database_limit' => 'nullable|integer|min:0',
'allocation_limit' => 'nullable|integer|min:0',
];