planetwars.dev/planetwars-server/migrations/2022-04-28-171349_create_rating/up.sql

7 lines
265 B
MySQL
Raw Normal View History

2022-05-09 17:41:33 +00:00
-- 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
)