Django 1.10 - makemigrations命令未检测到非托管模型的更改

时间:2016-12-12 20:40:50

标签: django django-models proxy-classes makemigrations

提前感谢您的帮助。在mi项目中,我有一个应用程序,涉及从现有数据库生成的模型。由于这些表由DBA管理,因此它们将保留为非托管模型。由于模式的变化,我们可能需要从db重新生成模型,因此我们为每个模型创建了替代代理模型,以便将我们管理的部分与我们不管理的部分分离。您可以在下面看到基于我们当前布局的示例。

该示例显示了生成的模型,其中FK与另一个生成的模型相对应,因此代理模型具有对非代理模型的引用。我已经阅读了指向here的讨论,并尝试了一些显示的方法,但是没有一个对我有用。所以现在我正在尝试更新生成的模型以指向代理模型,我认为这不应该导致任何问题。

正如我所看到的,Django为非托管模型生成了迁移,我认为makemigration会检测该模型的FK变化。但是,当我运行manage.py makemigrations时,表明未检测到任何更改。 是非托管模型的makemigrations的预期行为吗?

# app/models.py
class SacLocation(models.Model):
    sacloc_location_id = models.IntegerField(primary_key=True)
    sacloc_name = models.CharField(max_length=50, blank=True, null=True)
    sacloc_state = models.IntegerField(blank=True, null=True)

    # I'm changing this Field to point to the proxy model
    # e.g. it will look like this, but the change is not detected by makemigrations
    # sacloc_location_grouping = models.ForeignKey('LocationGroupingProxy', 
    #            models.DO_NOTHING, db_column='sacloc_location_grouping')
    sacloc_location_grouping = models.ForeignKey('SacLocationGrouping', 
                 models.DO_NOTHING, db_column='sacloc_location_grouping')

    class Meta:
        managed = False
        db_table = 'sac_location'


class SacLocationGrouping(models.Model):
    saclgr_location_grouping__id = models.IntegerField(primary_key=True)
    saclgr_name = models.CharField(max_length=50, blank=True, null=True)

    class Meta:
        managed = False
        db_table = 'sac_location_grouping'


class LocationProxy(SacLocation):        
    class Meta:
        proxy = True

    def __str__(self):
        return u'%s' % (self.sacloc_name)


class LocationGroupingProxy(SacLocationGrouping):
    class Meta:
        proxy = True

    def __str__(self):
        return u'%s' % (self.saclgr_name)

1 个答案:

答案 0 :(得分:0)

我在代码中进行了一些更改,将非托管模型(最初为其他非托管模型的FK)指向代理模型。这些更改都没有导致生成新的迁移,所以我认为在这种情况下预期的行为就是这样。查看Django源代码但未能发现检测到此更改的位置。最后,当我对代理模型中的Meta选项(例如排序)进行更改时,Django实际上检测到了这些更改并创建了一个新的迁移。