Add field to Ranking model to track previous rank.

This commit is contained in:
Patrick Fairbank
2020-03-26 21:38:58 -07:00
parent 9d3100e65a
commit 2f7d186554
12 changed files with 120 additions and 48 deletions

View File

@@ -2,6 +2,7 @@
CREATE TABLE rankings (
teamid INTEGER PRIMARY KEY,
rank int,
previousrank int,
rankingfieldsjson text
);