Re: Migration dependency not added when field is altered

2020-05-28 Thread Erin Masatsugu
> On Thu, May 28, 2020 at 7:32 AM Erin Masatsugu > wrote: > >> If I have this a model in app A: >> class AppAModel(models.Model): >> name = models.CharField(max_length=50, default="") >> >> and this model in app B: >> class AppBMo

Migration dependency not added when field is altered

2020-05-27 Thread Erin Masatsugu
If I have this a model in app A: class AppAModel(models.Model): name = models.CharField(max_length=50, default="") and this model in app B: class AppBModel(models.Model): name = models.CharField(max_length=50, default="") and a I add a foreign key to AppAModel in app C: class AppCModel(mo