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)