X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;ds=sidebyside;f=planetstack%2Fcore%2Fmodels%2Fdeployment.py;h=d38115f0dbc9fbbefa3b89fabf0e889ee7e12b9a;hb=bf1153a32d6f27291dd7a3238bc1a9451e9d6154;hp=4068ee967b061baf9d5c9beeae6eebb00eb41349;hpb=bca0b2be8ed74f17b1bf094b4a6ee52572ca11a4;p=plstackapi.git diff --git a/planetstack/core/models/deployment.py b/planetstack/core/models/deployment.py index 4068ee9..d38115f 100644 --- a/planetstack/core/models/deployment.py +++ b/planetstack/core/models/deployment.py @@ -4,8 +4,8 @@ from core.models import PlCoreBase # Create your models here. -class DeploymentNetwork(PlCoreBase): - name = models.CharField(max_length=200, unique=True, help_text="Name of the Deployment Network") +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)