Posts by Gabriele Alves Bonfim • 3 points
2 posts
-
0
votes1
answer64
viewsQ: How to add values from one model and insert the result into another using Django?
I have this model that aims to register the available services and their respective values: class Servico(models.Model): nome = models.CharField('Nome do serviço', max_length=255) preco =…
-
0
votes1
answer51
viewsQ: Sqlite database conflict when merging into git
I’m working with someone else on a Django project and she owns the main repository. I have a Fork from this repository and want to update it with the original. I created the upstream: git remote add…