Replace all instances of 255 as a max length with 191; ref #2421

This commit is contained in:
Dane Everitt
2020-09-26 16:29:26 -07:00
parent 4f21fa85f8
commit cc6f98c0fd
24 changed files with 41 additions and 38 deletions

View File

@@ -44,7 +44,7 @@ class Nest extends Model
*/
public static $validationRules = [
'author' => 'required|string|email',
'name' => 'required|string|max:255',
'name' => 'required|string|max:191',
'description' => 'nullable|string',
];