Backups cannot be nullable

This commit is contained in:
Dane Everitt 2020-05-04 19:06:20 -07:00
parent c4e9c0a4ba
commit 41845ffdad
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -127,7 +127,7 @@ class Server extends Model
'installed' => 'in:0,1,2',
'database_limit' => 'present|nullable|integer|min:0',
'allocation_limit' => 'sometimes|nullable|integer|min:0',
'backup_limit' => 'present|nullable|integer|min:0',
'backup_limit' => 'present|integer|min:0',
];
/**