关于Django的南方和数据迁移的问题
我刚刚从南方开始,到目前为止我所读到的内容还没有回答我的一个问题。
事情是这样的:数据怎么样? South 是否将所有数据转储到固定装置中,更改架构,然后重新加载所有数据?如果我的模型更改为删除列,South 是否会解析删除它的数据?
谢谢!
I'm just starting with South and one question that I have is not answered in what I have read so far.
Here is the thing: what about the data? Does South makes a dump of all data into a fixture, changes the schema and than reloads all of it? In the case of my model's change be the deletion of a column, does South parse the data removing it?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,为什么要这么做?它只是在数据库上运行 ALTER TABLE 语句。
No. Why would it do that? It simply runs ALTER TABLE statements on the database.