Deprecated Members model
authorSiobhan Tully <stully@verivue.com>
Fri, 6 Sep 2013 15:02:11 +0000 (11:02 -0400)
committerSiobhan Tully <stully@verivue.com>
Fri, 6 Sep 2013 15:02:11 +0000 (11:02 -0400)
planetstack/core/models/deployment.py

index 4e835d0..8bf9c06 100644 (file)
@@ -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)