我正在尝试将一些django模型中的某些字段移动到新模型中。我们假设我有一个书模型:
class Book(models.Model):
title = models.CharField(max_length=128)
author = models.CharField(max_length=128)
我决定我需要一个单独的作者模型(添加额外的数据等)。因此,请记住,我有一个运行的应用程序填充数据,保持兼容性的所需布局将是:
class Author(models.Model):
name = models.CharField(max_length=128, null=True) # null at first; filled with datamigration
nationality = models.CharField(max_length=64, null=True) # we don't have nationality for existing authors, but we'll ask the new ones
class Book(models.Model):
title = models.CharField(max_length=128)
author_model = models.ForeignKey(Author, null=True)
@property
def author(self):
return self.author_model.name
@author.setter
def author(self, newval):
self.author_model.name = newval
这样我就必须创建添加作者的schemamigration,然后是数据迁移来传输数据并填写author_model_id用于书籍,最后是数据迁移以从“books”表中删除“author”列。问题是,将Book.author从字段更改为属性后,我的迁移是否有效?我的意思是,如果在之前的一次迁移中南试图访问Book.author(期望一个CharField),它实际上会获得一个试图获得不存在的模型的属性。怎么做对了?
答案 0 :(得分:1)
我首先在一次迁移中将作者CharField重命名为author_str,然后添加新模型并执行数据迁移,然后删除author_str字段。