• 让SQLite数据库中表名支持重命名的方法


    修改了数据库表名之后,更新数据库时跳错:

    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 在 py36Libsite-packagesdjangodbmigrationsmigration.py 的位置

    atomic = True 改成 atomic = False

  • 相关阅读:
    使用Mybatis时报错Invalid bound statement (not found):
    MyBatis学习(3)
    选数字
    看程序写结果
    NP
    完全平方数
    hahaha
    haha

    凝视
  • 原文地址:https://www.cnblogs.com/JeromeLong/p/13195485.html
Copyright © 2020-2023  润新知