diff options
author | Frédéric Guillot <fred@kanboard.net> | 2018-04-11 12:03:38 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2018-04-11 13:48:13 -0700 |
commit | dd92564d221f35fc4fc7bb449c6d24cc4743247b (patch) | |
tree | fb1e46d904f0fbf1f33f1449ca24354003f5e809 /app/Import | |
parent | 8c5b9925c49bc1a989cdc5e146ce79543fdf7f0a (diff) |
Increase text fields length in several tables
Diffstat (limited to 'app/Import')
-rw-r--r-- | app/Import/TaskImport.php | 4 | ||||
-rw-r--r-- | app/Import/UserImport.php | 2 |
2 files changed, 3 insertions, 3 deletions
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(); diff --git a/app/Import/UserImport.php b/app/Import/UserImport.php index 304a3254..1ba9144b 100644 --- a/app/Import/UserImport.php +++ b/app/Import/UserImport.php @@ -108,7 +108,7 @@ class UserImport extends Base public function validateCreation(array $values) { $v = new Validator($values, array( - new Validators\MaxLength('username', t('The maximum length is %d characters', 50), 50), + new Validators\MaxLength('username', t('The maximum length is %d characters', 255), 255), new Validators\Unique('username', t('The username must be unique'), $this->db->getConnection(), UserModel::TABLE, 'id'), new Validators\MinLength('password', t('The minimum length is %d characters', 6), 6), new Validators\Email('email', t('Email address invalid')), |