From 1052be670d05675ac043f895fd2d116f2bc2403d Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 15 Jun 2017 21:04:10 -0700 Subject: [PATCH] Increase size of state field --- app/Models/Location.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Location.php b/app/Models/Location.php index 22f7714de..e503fa0d7 100755 --- a/app/Models/Location.php +++ b/app/Models/Location.php @@ -17,7 +17,7 @@ class Location extends SnipeModel protected $rules = array( 'name' => 'required|min:3|max:255|unique_undeleted', 'city' => 'min:3|max:255', - 'state' => 'min:0|max:2', + 'state' => 'min:0|max:32', 'country' => 'min:2|max:2', 'address' => 'min:5|max:80', 'address2' => 'min:2|max:80',