oacpl/variables/models.py

8 lines
241 B
Python
Raw Normal View History

2018-01-31 18:55:36 -05:00
from django.db import models
class Variable(models.Model):
key = models.CharField(max_length=20, unique=True)
value = models.TextField(blank=True, null=True)
help_text = models.CharField(max_length=1000, blank=True, null=True)