remove Dashboard Views from user admin
[plstackapi.git] / planetstack / core / models / plservice.py
1 from core.models import PlCoreBase,SingletonModel
2 from django.db import models
3
4 class PlanetStackService(PlCoreBase):
5     description = models.TextField(max_length=254,null=True, blank=True,help_text="Description of Service")
6     enabled = models.BooleanField(default=True)
7     serviceName = models.CharField(max_length=30, help_text="Service Name")
8
9     def __unicode__(self): return u'%s' % (self.serviceName)