Last active
August 6, 2017 17:21
-
-
Save beatrizuezu/92faae7b82cbf932c3983e14e3717ea9 to your computer and use it in GitHub Desktop.
De SQL para ORM Django / categorias/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
#categorias/model.py | |
class Categoria(models.Model): | |
nome = models.CharField('Nome', max_length=128) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment