blob: 740be333a98cfbe8d3098bd934aee64e6e0df298 [file] [log] [blame]
Siobhan Tully4bc09f22013-04-10 21:15:21 -04001import os
2from django.db import models
3from plstackapi.core.models import PlCoreBase
4
5# Create your models here.
6
7class DeploymentNetwork(PlCoreBase):
8 name = models.CharField(max_length=200, unique=True, help_text="Name of the Deployment Network")
9
10 def __unicode__(self): return u'%s' % (self.name)
11