Increase text fields length in several tables

This commit is contained in:
Frédéric Guillot
2018-04-11 12:03:38 -07:00
parent 8c5b9925c4
commit dd92564d22
38 changed files with 158 additions and 103 deletions

View File

@@ -69,7 +69,7 @@ class ColumnValidator extends BaseValidator
new Validators\Integer('task_limit', t('This value must be an integer')),
new Validators\GreaterThan('task_limit', t('This value must be greater than %d', -1), -1),
new Validators\Required('title', t('The title is required')),
new Validators\MaxLength('title', t('The maximum length is %d characters', 50), 50),
new Validators\MaxLength('title', t('The maximum length is %d characters', 255), 255),
);
}
}