From: Scott Baker Date: Mon, 29 Jul 2013 22:38:54 +0000 (-0700) Subject: add description field to NetworkTemplate X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=71797d4389f87f6548a76bc1eb44994298146fa4;p=plstackapi.git add description field to NetworkTemplate --- diff --git a/planetstack/core/models/network.py b/planetstack/core/models/network.py index 6c591f5..fddc6e6 100644 --- a/planetstack/core/models/network.py +++ b/planetstack/core/models/network.py @@ -13,6 +13,7 @@ class NetworkTemplate(PlCoreBase): VISIBILITY_CHOICES = (('public', 'public'), ('private', 'private')) name = models.CharField(max_length=32) + description = models.CharField(max_length=1024, blank=True, null=True) guaranteedBandwidth = models.IntegerField(default=0) visibility = models.CharField(max_length=30, choices=VISIBILITY_CHOICES, default="private")