From dd57026093955eae1b4733619f8ad145f55c93bf Mon Sep 17 00:00:00 2001
From: Andreas Kloeckner <inform@tiker.net>
Date: Sun, 21 Dec 2014 15:03:12 -0600
Subject: [PATCH] Add prototype of new exceptions

---
 course/models.py | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/course/models.py b/course/models.py
index 7e11cb61..c77d8f11 100644
--- a/course/models.py
+++ b/course/models.py
@@ -514,6 +514,18 @@ class FlowAccessExceptionEntry(models.Model):
     def __unicode__(self):
         return self.permission
 
+
+# class FlowAccessException2(models.Model):
+#     flow_id = models.CharField(max_length=200, blank=False, null=False)
+#
+#     creator = models.ForeignKey(User, null=True)
+#     creation_time = models.DateTimeField(default=now, db_index=True)
+#
+#     comment = models.TextField(blank=True, null=True)
+#
+#     new_session_rules = YAMLField(blank=True, null=True)
+#     existing_session_rules = YAMLField(blank=True, null=True)
+
 # }}}
 
 
-- 
GitLab