From c618a30b446cde43800b925954defe031ba850f3 Mon Sep 17 00:00:00 2001 From: Jamie Campbell Date: Mon, 14 Dec 2015 01:46:32 -0600 Subject: [PATCH] db model for dynamic stylesheet support --- questionnaire/models.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/questionnaire/models.py b/questionnaire/models.py index cba502c..5b2fa3a 100644 --- a/questionnaire/models.py +++ b/questionnaire/models.py @@ -93,6 +93,10 @@ class Questionnaire(models.Model): class DBStylesheet(models.Model): + #Questionnaire max length of name is 128; Questionset max length of heading + #is 64, and Question associative information is id which is less than 128 + #in length + inclusion_tag = models.CharField(max_length=128) content = models.TextField() class QuestionSet(models.Model):