app: update models

This commit is contained in:
Matthew Penner 2021-07-17 15:18:05 -06:00
parent 28bc86e23b
commit 9d64c6751b
25 changed files with 55 additions and 54 deletions

View file

@ -52,10 +52,8 @@ class Mount extends Model
/**
* Rules verifying that the data being stored matches the expectations of the database.
*
* @var string
*/
public static $validationRules = [
public static array $validationRules = [
'name' => 'required|string|min:2|max:64|unique:mounts,name',
'description' => 'nullable|string|max:191',
'source' => 'required|string',