diff options
Diffstat (limited to 'django/db/backends/mysql/features.py')
-rw-r--r-- | django/db/backends/mysql/features.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/db/backends/mysql/features.py b/django/db/backends/mysql/features.py index 834ea4f88f..c4706fc1b0 100644 --- a/django/db/backends/mysql/features.py +++ b/django/db/backends/mysql/features.py @@ -336,5 +336,6 @@ class DatabaseFeatures(BaseDatabaseFeatures): def supports_expression_indexes(self): return ( not self.connection.mysql_is_mariadb + and self._mysql_storage_engine != "MyISAM" and self.connection.mysql_version >= (8, 0, 13) ) |