> 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
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
2 matches
Mail list logo