diff options
Diffstat (limited to 'planetwars-server/migrations/2022-04-28-171349_create_rating/up.sql')
-rw-r--r-- | planetwars-server/migrations/2022-04-28-171349_create_rating/up.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/planetwars-server/migrations/2022-04-28-171349_create_rating/up.sql b/planetwars-server/migrations/2022-04-28-171349_create_rating/up.sql new file mode 100644 index 0000000..39fe6fe --- /dev/null +++ b/planetwars-server/migrations/2022-04-28-171349_create_rating/up.sql @@ -0,0 +1,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 +)
\ No newline at end of file |