Skip to content

Instantly share code, notes, and snippets.

@beatrizuezu
Last active July 5, 2021 21:20
Show Gist options
  • Save beatrizuezu/5ec77ef4799a3d1b5e8a178e5d9fa6de to your computer and use it in GitHub Desktop.
Save beatrizuezu/5ec77ef4799a3d1b5e8a178e5d9fa6de to your computer and use it in GitHub Desktop.
De SQL para ORM Django / produtos/models.py
#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