From e7d8814e09c3876a356811c675d4fd1fb1f2cfbe Mon Sep 17 00:00:00 2001 From: Siobhan Tully <stully@verivue.com> Date: Fri, 6 Sep 2013 11:02:11 -0400 Subject: [PATCH] Deprecated Members model --- planetstack/core/models/deployment.py | 2 -- 1 file changed, 2 deletions(-) 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) -- 2.47.0