Add leaderboard stats endpoint and trends

This commit is contained in:
Tom Bloor 2017-06-06 22:30:02 +01:00
parent daeeac811c
commit 9cd9f8079e
6 changed files with 557 additions and 0 deletions

View file

@ -28,6 +28,10 @@ __PACKAGE__->add_columns(
size => [ 16, 2 ],
is_nullable => 0,
},
"trend" => {
data_type => "integer",
default_value => 0,
},
);
__PACKAGE__->set_primary_key("id");