src/notes/models/auth.py
changeset 133 6f3078f7fd47
parent 131 adad5563603c
child 142 56850f5c73f6
--- a/src/notes/models/auth.py	Tue Aug 01 12:20:14 2017 +0200
+++ b/src/notes/models/auth.py	Thu Aug 03 09:44:37 2017 +0200
@@ -40,6 +40,7 @@
     # indicate that this group is a personal group.
     # used this instead of a boolean because it allows to easily enforce that a user has only one personal group
     owner_personal = models.OneToOneField(User, on_delete=models.CASCADE, null=True, related_name='personal_group')
+    protocol = models.CharField(max_length=512, null=True, blank=True)
 
     @property
     def is_personal(self):