mirror of
https://github.com/jazzband/django-constance.git
synced 2026-03-21 16:50:25 +00:00
14 lines
288 B
Python
14 lines
288 B
Python
from django.db import models
|
|
|
|
class Shelf(models.Model):
|
|
name = models.CharField(max_length=75)
|
|
|
|
class Meta:
|
|
verbose_name_plural = 'shelves'
|
|
|
|
class Supply(models.Model):
|
|
name = models.CharField(max_length=75)
|
|
|
|
class Meta:
|
|
verbose_name_plural = 'supplies'
|
|
|