1
0
mirror of https://github.com/django/django.git synced 2025-03-31 11:37:06 +00:00

Revert "Fixed regression from a2dd618e3b4a7472fab852da450ca5eef92a922f."

This reverts commit 5a2556afb9b1b3ef6e0622552970c67ac84ecd28.
This commit is contained in:
Marc Tamlyn 2014-05-19 14:57:06 +01:00
parent 2f43229c2f
commit ecbabc216d

View File

@ -17,8 +17,7 @@ class DatabaseValidation(BaseDatabaseValidation):
if getattr(field, 'rel', None) is None:
field_type = field.db_type(connection)
if (field_type is not None # Not all fields have a db_type (whyever...)
and field_type.startswith('varchar') # Look for CharFields...
if (field_type.startswith('varchar') # Look for CharFields...
and field.unique # ... that are unique
and (field.max_length is None or int(field.max_length) > 255)):
errors.append(