mirror of
https://github.com/jazzband/django-constance.git
synced 2026-05-01 04:04:56 +00:00
6 lines
101 B
Python
6 lines
101 B
Python
|
|
from django.db import models
|
||
|
|
|
||
|
|
class Brand(models.Model):
|
||
|
|
name = models.CharField(max_length=75)
|
||
|
|
|