blob: eb27d0fcb043b191dbaf5a31dba1d1ea6fae0fe5 [file] [log] [blame]
Siobhan Tullyce652d02013-10-08 21:52:35 -04001from core.models import PlCoreBase,SingletonModel
2from django.db import models
3
4class 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)