mirror of https://github.com/openspug/spug
15 lines
354 B
Python
15 lines
354 B
Python
from django.db import models
|
|
from libs import ModelMixin
|
|
|
|
|
|
class Setting(models.Model, ModelMixin):
|
|
key = models.CharField(max_length=50, unique=True)
|
|
value = models.TextField()
|
|
desc = models.CharField(max_length=255, null=True)
|
|
|
|
def __repr__(self):
|
|
return '<Setting %r>' % self.key
|
|
|
|
class Meta:
|
|
db_table = 'settings'
|