blob: d38115f0dbc9fbbefa3b89fabf0e889ee7e12b9a [file] [log] [blame]
import os
from django.db import models
from core.models import PlCoreBase
# Create your models here.
class Deployment(PlCoreBase):
name = models.CharField(max_length=200, unique=True, help_text="Name of the Deployment")
def __unicode__(self): return u'%s' % (self.name)