我有一个看起来像这样的产品的简单模型:
class Product(models.Model):
name = models.CharField(max_length=80)
# other attributes
我们已经推出了这个,并且有一个填写了这些字段的数据库。我想将此模型更改为从基类继承,如下所示:
class BaseProduct(models.Model):
name = models.CharField(max_length=80)
class Meta(object):
abstract = True
并像这样修改 Product 类:
class Product(BaseProduct):
# other attributes
根据我对抽象基类的理解,这两个设置将创建相同的表(对吗?)。所以从技术上讲,在改变这个模型之后,我不应该对数据库做任何修改。但是,当我尝试使用 South 应用它时,它想要删除 Product 表的“名称”列。
由于我们已经推出了这些表,因此我希望保留“名称”列,而不是使用其他解决方案(如 OneToOneField)。
谢谢!