From: Siobhan Tully Date: Fri, 6 Sep 2013 15:02:11 +0000 (-0400) Subject: Deprecated Members model X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=e7d8814e09c3876a356811c675d4fd1fb1f2cfbe;p=plstackapi.git Deprecated Members model --- diff --git a/planetstack/core/models/deployment.py b/planetstack/core/models/deployment.py index 4e835d0..8bf9c06 100644 --- a/planetstack/core/models/deployment.py +++ b/planetstack/core/models/deployment.py @@ -1,14 +1,12 @@ import os from django.db import models from core.models import PlCoreBase -from core.models import Member from django.contrib.contenttypes import generic # Create your models here. class Deployment(PlCoreBase): name = models.CharField(max_length=200, unique=True, help_text="Name of the Deployment") - members = generic.GenericRelation(Member) def __unicode__(self): return u'%s' % (self.name)