Last active
July 5, 2021 21:20
-
-
Save beatrizuezu/5ec77ef4799a3d1b5e8a178e5d9fa6de to your computer and use it in GitHub Desktop.
De SQL para ORM Django / produtos/models.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#produtos/models.py | |
class Produto(models.Model): | |
nome = models.CharField( | |
'Nome', | |
max_length=128 | |
) | |
valor = models.DecimalField( | |
'Valor', | |
max_digits=10, | |
decimal_places=2, | |
blank=True, | |
null=True | |
) | |
categoria = models.ForeignKey(Categoria, models.SET_NULL, null=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment