Django提示mysql版本過低:django.db.utils.NotSupportedError: MySQL 8 or later is required (found 5.7.26).

ubirdy發表於2024-07-28

這個提示只是Django的版本檢測提示,把它註釋掉就好了。

全域性搜尋函式:

 check_database_version_supported()

檔案路徑是:

django_project\dj01\venv\Lib\site-packages\django\db\backends\base\base.py

找到第二個,就是就是使用的那個,把它註釋了:

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)

先執行生成資料庫遷移檔案命令:

python .\manage.py makemigrations

遷移到資料庫中,執行命令:

python .\manage.py migrate

相關文章