From dd92564d221f35fc4fc7bb449c6d24cc4743247b Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Wed, 11 Apr 2018 12:03:38 -0700 Subject: Increase text fields length in several tables --- app/Import/TaskImport.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/Import/TaskImport.php') diff --git a/app/Import/TaskImport.php b/app/Import/TaskImport.php index 8278ed26..9ed351c5 100644 --- a/app/Import/TaskImport.php +++ b/app/Import/TaskImport.php @@ -140,8 +140,8 @@ class TaskImport extends Base new Validators\Integer('project_id', t('This value must be an integer')), new Validators\Required('project_id', t('The project is required')), new Validators\Required('title', t('The title is required')), - new Validators\MaxLength('title', t('The maximum length is %d characters', 200), 200), - new Validators\MaxLength('reference', t('The maximum length is %d characters', 50), 50), + new Validators\MaxLength('title', t('The maximum length is %d characters', 65535), 65535), + new Validators\MaxLength('reference', t('The maximum length is %d characters', 255), 255), )); return $v->execute(); -- cgit v1.2.3