aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/tables.py
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-06-24 10:44:46 +0100
committerGravatar Gareth Coles <[email protected]>2018-06-24 10:44:46 +0100
commit3dfbe79936965e9a4ef5eba634dff87009581192 (patch)
tree838f0d96a57e450091dcd5899d61e45d78ab3ae9 /pysite/tables.py
parent[API] Check for DB-nuking empty data in users POST (diff)
[API] Implement chunk-based user update mechanism
Diffstat (limited to 'pysite/tables.py')
-rw-r--r--pysite/tables.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/pysite/tables.py b/pysite/tables.py
index 191b52bd..8a336ad5 100644
--- a/pysite/tables.py
+++ b/pysite/tables.py
@@ -118,6 +118,14 @@ TABLES = {
])
),
+ "member_chunks": Table(
+ primary_key="id",
+ keys=sorted([
+ "id", # str
+ "chunk", # list
+ ])
+ ),
+
"oauth_data": Table( # OAuth login information
primary_key="id",
keys=sorted([