Fix casting
This commit is contained in:
parent
9a4c0d8ba7
commit
6ec2ae9df8
1 changed files with 1 additions and 7 deletions
|
@ -43,13 +43,8 @@ class Mount extends Model
|
||||||
*
|
*
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $attributes = [
|
protected $casts = [
|
||||||
'id' => 'int',
|
'id' => 'int',
|
||||||
'uuid' => 'string',
|
|
||||||
'name' => 'string',
|
|
||||||
'description' => 'string',
|
|
||||||
'source' => 'string',
|
|
||||||
'target' => 'string',
|
|
||||||
'read_only' => 'bool',
|
'read_only' => 'bool',
|
||||||
'user_mountable' => 'bool',
|
'user_mountable' => 'bool',
|
||||||
];
|
];
|
||||||
|
@ -60,7 +55,6 @@ class Mount extends Model
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
public static $validationRules = [
|
public static $validationRules = [
|
||||||
// 'uuid' => 'required|string|size:36|unique:mounts,uuid',
|
|
||||||
'name' => 'required|string|min:2|max:64|unique:mounts,name',
|
'name' => 'required|string|min:2|max:64|unique:mounts,name',
|
||||||
'description' => 'nullable|string|max:255',
|
'description' => 'nullable|string|max:255',
|
||||||
'source' => 'required|string',
|
'source' => 'required|string',
|
||||||
|
|
Loading…
Reference in a new issue