diff options
Diffstat (limited to 'pysite/tables.py')
-rw-r--r-- | pysite/tables.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pysite/tables.py b/pysite/tables.py index 8ec550fb..499172d9 100644 --- a/pysite/tables.py +++ b/pysite/tables.py @@ -65,8 +65,11 @@ TABLES = { "code_jam_questions": Table( # Application form questions primary_key="id", keys=sorted([ + "data", # dict "id", # uuid - "" # TODO + "optional", # bool + "title", # str + "type", # str ]) ), @@ -76,6 +79,7 @@ TABLES = { "id", # uuid "jam", # int "answers", # dict {question, answer, metadata} + "approved" # bool ]) ), |