aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/tables.py
diff options
context:
space:
mode:
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)
])