X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=plstackapi%2Fcore%2Fmodels%2Fslice.py;h=712216702e07ff8e2745f48b08fee222c96f205d;hb=659dd52fcd50b58549f1eaa2812223792b4e4104;hp=d509cc0707dcfb32bace28b0bd27c8503203eeae;hpb=b30ac0582534c294cacb3599a96ce1960d637cf1;p=plstackapi.git diff --git a/plstackapi/core/models/slice.py b/plstackapi/core/models/slice.py index d509cc0..7122167 100644 --- a/plstackapi/core/models/slice.py +++ b/plstackapi/core/models/slice.py @@ -12,8 +12,6 @@ class Slice(PlCoreBase): tenant_id = models.CharField(max_length=200, help_text="Keystone tenant id") name = models.CharField(unique=True, help_text="The Name of the Slice", max_length=80) enabled = models.BooleanField(default=True, help_text="Status for this Slice") - SLICE_CHOICES = (('plc', 'PLC'), ('delegated', 'Delegated'), ('controller','Controller'), ('none','None')) - instantiation = models.CharField(help_text="The instantiation type of the slice", max_length=80, choices=SLICE_CHOICES) omf_friendly = models.BooleanField() description=models.TextField(blank=True,help_text="High level description of the slice and expected activities", max_length=1024) slice_url = models.URLField(blank=True, max_length=512)