Loading django/db/backends/mysql/validation.py +2 −3 Original line number Diff line number Diff line Loading @@ -22,11 +22,10 @@ class DatabaseValidation(BaseDatabaseValidation): and (field.max_length is None or int(field.max_length) > 255)): errors.append( checks.Error( ('Under mysql backend, the field cannot have a "max_length" ' 'greated than 255 when it is unique.'), ('MySQL does not allow unique CharFields to have a max_length > 255.'), hint=None, obj=field, id='E047', id='mysql.E001', ) ) return errors tests/invalid_models_tests/test_ordinary_fields.py +2 −3 Original line number Diff line number Diff line Loading @@ -191,11 +191,10 @@ class CharFieldTests(IsolatedModelsTestCase): errors = validator.check_field(field) expected = [ Error( ('Under mysql backend, the field cannot have a "max_length" ' 'greated than 255 when it is unique.'), 'MySQL does not allow unique CharFields to have a max_length > 255.', hint=None, obj=field, id='E047', id='mysql.E001', ) ] self.assertEqual(errors, expected) Loading Loading
django/db/backends/mysql/validation.py +2 −3 Original line number Diff line number Diff line Loading @@ -22,11 +22,10 @@ class DatabaseValidation(BaseDatabaseValidation): and (field.max_length is None or int(field.max_length) > 255)): errors.append( checks.Error( ('Under mysql backend, the field cannot have a "max_length" ' 'greated than 255 when it is unique.'), ('MySQL does not allow unique CharFields to have a max_length > 255.'), hint=None, obj=field, id='E047', id='mysql.E001', ) ) return errors
tests/invalid_models_tests/test_ordinary_fields.py +2 −3 Original line number Diff line number Diff line Loading @@ -191,11 +191,10 @@ class CharFieldTests(IsolatedModelsTestCase): errors = validator.check_field(field) expected = [ Error( ('Under mysql backend, the field cannot have a "max_length" ' 'greated than 255 when it is unique.'), 'MySQL does not allow unique CharFields to have a max_length > 255.', hint=None, obj=field, id='E047', id='mysql.E001', ) ] self.assertEqual(errors, expected) Loading