diff options
Diffstat (limited to 'pysite/tables.py')
-rw-r--r-- | pysite/tables.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/pysite/tables.py b/pysite/tables.py index cf38a698..de9499e8 100644 --- a/pysite/tables.py +++ b/pysite/tables.py @@ -93,7 +93,9 @@ TABLES = { keys=sorted([ "id", # uuid "name", # str - "members" # list[str] + "members", # list[str] + "repo", # str + "jam" # int ]) ), @@ -117,6 +119,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([ |