diff options
author | 2018-06-17 21:31:00 +0000 | |
---|---|---|
committer | 2018-06-17 21:31:00 +0000 | |
commit | dc2a5013fb93141f50dc92b4b8cc4d6004b8e814 (patch) | |
tree | 07a3c381d9b58890c14049f8a23e8154b33e0003 /pysite/tables.py | |
parent | [Wiki] Quick-fix for broken editor (diff) |
Backend for team assignment
Diffstat (limited to 'pysite/tables.py')
-rw-r--r-- | pysite/tables.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pysite/tables.py b/pysite/tables.py index ad864fee..cf38a698 100644 --- a/pysite/tables.py +++ b/pysite/tables.py @@ -49,10 +49,10 @@ TABLES = { "state", # str "task_html", # str "task_rst", # str - "teams", # list[int] + "teams", # list[str] "theme", # str "title", # str - "winners" # list[int] + "winners" # list[str] ]) ), @@ -93,7 +93,7 @@ TABLES = { keys=sorted([ "id", # uuid "name", # str - "members" # list[int] + "members" # list[str] ]) ), |