|
@@ -32,8 +32,8 @@ from .schema import DatabaseSchemaEditor # isort:skip
|
|
|
from .validation import DatabaseValidation # isort:skip
|
|
|
|
|
|
version = Database.version_info
|
|
|
-if version < (1, 3, 13):
|
|
|
- raise ImproperlyConfigured('mysqlclient 1.3.13 or newer is required; you have %s.' % Database.__version__)
|
|
|
+if version < (1, 4, 0):
|
|
|
+ raise ImproperlyConfigured('mysqlclient 1.4.0 or newer is required; you have %s.' % Database.__version__)
|
|
|
|
|
|
|
|
|
# MySQLdb returns TIME columns as timedelta -- they are more like timedelta in
|