From 71797d4389f87f6548a76bc1eb44994298146fa4 Mon Sep 17 00:00:00 2001 From: Scott Baker Date: Mon, 29 Jul 2013 15:38:54 -0700 Subject: [PATCH] add description field to NetworkTemplate --- planetstack/core/models/network.py | 1 + 1 file changed, 1 insertion(+) 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") -- 2.47.0