added role_id to role model
diff --git a/plstackapi/planetstack/models.py b/plstackapi/planetstack/models.py
index 8904bbd..a8fea63 100644
--- a/plstackapi/planetstack/models.py
+++ b/plstackapi/planetstack/models.py
@@ -21,6 +21,7 @@
 class Role(PlCoreBase):
 
     ROLE_CHOICES = (('admin', 'Admin'), ('pi', 'Principle Investigator'), ('user','User'))
+    role_id = models.CharField(max_length=256, unique=True)
     role_type = models.CharField(max_length=80, unique=True, choices=ROLE_CHOICES)
 
     def __unicode__(self):  return u'%s' % (self.role_type)