Posts by Vinicius Soares • 1 point
1 post
-
0
votes1
answer251
viewsQ: How do I insert data into a foreign key table in Django?
class Endereco(models. Model): cep = models.IntegerField('cep', max_length=10) rua = models.CharField('rua', max_length=100) numero = models.CharField('numero', max_length=10) bairro =…
djangoasked Vinicius Soares 1