Created
December 17, 2015 12:47
-
-
Save RodolfoSilva/9a7e02a23268ed8f5c32 to your computer and use it in GitHub Desktop.
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
from django.db import models | |
class Categoria(models.Model): | |
nome = models.CharField(max_length=200) | |
slug = models.SlugField(unique=True, blank=True, null=True) | |
parent = models.ForeignKey('self', blank=True, null=True, related_name='child') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment