diff options
author | 2018-07-21 04:48:54 +0200 | |
---|---|---|
committer | 2018-07-21 04:48:54 +0200 | |
commit | 3a9ceaccb5326ff3b569e3f948b94107b7c26ee2 (patch) | |
tree | 9fd4e017965e20467b551193284c55533fc5161c /pysite/tables.py | |
parent | Merge branch 'update-dev-env' into 'master' (diff) |
Completed the clean API and the clean frontend.
Diffstat (limited to 'pysite/tables.py')
-rw-r--r-- | pysite/tables.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pysite/tables.py b/pysite/tables.py index 8f849664..adc8c409 100644 --- a/pysite/tables.py +++ b/pysite/tables.py @@ -16,6 +16,14 @@ TABLES = { ]) ), + "clean_logs": Table( # Logs of cleanups done by the clean bot commands + primary_key="id", + keys=sorted([ + "id", + "log_data" + ]) + ), + "hiphopify": Table( # Users in hiphop prison primary_key="user_id", keys=sorted([ |