django-constance/example/cheeseshop/apps/catalog/models.py
2024-07-03 19:21:33 +05:00

5 lines
101 B
Python

from django.db import models
class Brand(models.Model):
name = models.CharField(max_length=75)