mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-02 08:21:09 -08:00
Increase size of state field
This commit is contained in:
parent
30a9704625
commit
1052be670d
|
@ -17,7 +17,7 @@ class Location extends SnipeModel
|
||||||
protected $rules = array(
|
protected $rules = array(
|
||||||
'name' => 'required|min:3|max:255|unique_undeleted',
|
'name' => 'required|min:3|max:255|unique_undeleted',
|
||||||
'city' => 'min:3|max:255',
|
'city' => 'min:3|max:255',
|
||||||
'state' => 'min:0|max:2',
|
'state' => 'min:0|max:32',
|
||||||
'country' => 'min:2|max:2',
|
'country' => 'min:2|max:2',
|
||||||
'address' => 'min:5|max:80',
|
'address' => 'min:5|max:80',
|
||||||
'address2' => 'min:2|max:80',
|
'address2' => 'min:2|max:80',
|
||||||
|
|
Loading…
Reference in a new issue