Altessimo/categories/models.py

15 lines
289 B
Python
Raw Normal View History

2020-12-15 21:32:20 +00:00
from django.db import models
# Create your models here.
class Category(models.Model):
name = models.CharField(max_length=255)
description = models.TextField(blank=True)
class Meta:
verbose_name_plural = "Categories"
def __str__(self):
return self.name