10 lines
147 B
Python
10 lines
147 B
Python
|
from django.db import models
|
||
|
|
||
|
# Create your models here.
|
||
|
|
||
|
|
||
|
class Category(models.Model):
|
||
|
name = models.CharField(max_length=200, default="")
|
||
|
|
||
|
|