diff options
author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-05-17 13:16:23 +0200 |
---|---|---|
committer | Carlton Gibson <carlton@noumenal.es> | 2022-05-17 14:59:28 +0200 |
commit | 2cec020f5bc462954d902bdad1a5955852cecff6 (patch) | |
tree | 56c542879b9e17e06ed0a580e42f9b3566d05afa /django/db/backends/mysql/features.py | |
parent | 3c6f1fd1f8096b22a52c682a9d295c4396ee3035 (diff) | |
download | django-2cec020f5bc462954d902bdad1a5955852cecff6.tar.gz |
Refs #33379 -- Fixed minimum supported version of MariaDB.
Diffstat (limited to 'django/db/backends/mysql/features.py')
-rw-r--r-- | django/db/backends/mysql/features.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/mysql/features.py b/django/db/backends/mysql/features.py index 1261d9e9a6..53c0652fce 100644 --- a/django/db/backends/mysql/features.py +++ b/django/db/backends/mysql/features.py @@ -52,7 +52,7 @@ class DatabaseFeatures(BaseDatabaseFeatures): @cached_property def minimum_database_version(self): if self.connection.mysql_is_mariadb: - return (10, 2) + return (10, 3) else: return (5, 7) |