.venv/Lib/site-packages/django/db/backends/base/base.py 文件中将self.check_database_version_supported()注释掉,不去检查数据库版本。
def init_connection_state(self):
"""Initialize the database connection settings."""
global RAN_DB_VERSION_CHECK
if self.alias not in RAN_DB_VERSION_CHECK:
# self.check_database_version_supported()
RAN_DB_VERSION_CHECK.add(self.alias)