aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/tables.py
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-05-19 13:53:53 +0100
committerGravatar Gareth Coles <[email protected]>2018-05-19 13:53:53 +0100
commit4a66fe0427aaacac3cbfdf6b2ea47bb3e056e88b (patch)
tree581cef536c213ed00cc6ca48998f67b0df7e0b5b /pysite/tables.py
parentFix some small question-editing bugs (diff)
[Jams] Linting and infractions
Diffstat (limited to 'pysite/tables.py')
-rw-r--r--pysite/tables.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pysite/tables.py b/pysite/tables.py
index 67503cdb..c180e161 100644
--- a/pysite/tables.py
+++ b/pysite/tables.py
@@ -97,8 +97,8 @@ TABLES = {
"code_jam_infractions": Table( # Individual infractions for each user
primary_key="id",
keys=sorted([
- "snowflake", # int
- "participant", # int
+ "id", # uuid
+ "participant", # str
"reason", # str
"number" # int (optionally -1 for permanent)
])