Relative Content

Tag Archive for pythondjangodjango-modelsdjango-viewsdjango-forms

how to create a foreign key from the top model to bottom model?

Hello everyone!:) I just started django and this is my problem class Model1(models.Model): x = models.ForeignKey(Model2, on_delete=models.CASCADE) class Model2(models.Model): y = models.CharField(max_length=200) I wanna know how to create a foreignkey to Model2 from Model1? How can I do it? I know maybe you say you just need to replace Model1 with Model2 and then create […]