blob: d38115f0dbc9fbbefa3b89fabf0e889ee7e12b9a [file] [log] [blame]
Siobhan Tully4bc09f22013-04-10 21:15:21 -04001import os
2from django.db import models
Siobhan Tully30fd4292013-05-10 08:59:56 -04003from core.models import PlCoreBase
Siobhan Tully4bc09f22013-04-10 21:15:21 -04004
5# Create your models here.
6
Siobhan Tullybf1153a2013-05-27 20:53:48 -04007class Deployment(PlCoreBase):
8 name = models.CharField(max_length=200, unique=True, help_text="Name of the Deployment")
Siobhan Tully4bc09f22013-04-10 21:15:21 -04009
10 def __unicode__(self): return u'%s' % (self.name)
11