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/UserImport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Import/UserImport.php') 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')), -- cgit v1.2.3