码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2020-06-26 18:10:51      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:util   tom   table   int   就是   数据库表   The   ror   code   

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

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

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

标签:util   tom   table   int   就是   数据库表   The   ror   code   

原文地址:https://www.cnblogs.com/JeromeLong/p/13195485.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!