SOITA/categories/models.py

10 lines
147 B
Python
Raw Normal View History

2021-12-12 11:35:35 +01:00
from django.db import models
# Create your models here.
class Category(models.Model):
name = models.CharField(max_length=200, default="")