aboutsummaryrefslogtreecommitdiff
path: root/planetwars-server/migrations/2022-04-28-171349_create_rating/up.sql
blob: 39fe6fee708767e088ec362b404edcfaf831f562 (plain)
1
2
3
4
5
6
7
-- Your SQL goes here
-- this table could later be expanded to include more information,
-- such as rating state (eg. number of matches played) or scope (eg. map)
create table ratings (
    bot_id integer PRIMARY KEY REFERENCES bots(id),
    rating float NOT NULL
)