mirror of
https://github.com/jazzband/django-constance.git
synced 2026-03-23 09:40:25 +00:00
5 lines
101 B
Python
5 lines
101 B
Python
from django.db import models
|
|
|
|
class Brand(models.Model):
|
|
name = models.CharField(max_length=75)
|
|
|