修改了數據庫表名之后,更新數據庫時跳錯:
django.db.utils.NotSupportedError: Renaming the 'app_class' table while in a transaction is not supported on SQLite because it would break referential integrity. Try adding atomic = False to the Migration class.
意思就是 SQLite 數據庫不支持重命名的操作,添加atomic = False
即可:
Migration 在 \py36\Lib\site-packages\django\db\migrations\migration.py 的位置
將 atomic = True
改成 atomic = False