aboutsummaryrefslogtreecommitdiff
path: root/planetwars-server/src/schema.rs
diff options
context:
space:
mode:
authorIlion Beyst <ilion.beyst@gmail.com>2022-11-22 20:42:34 +0100
committerIlion Beyst <ilion.beyst@gmail.com>2022-11-22 20:42:34 +0100
commit1eb81092d7a3e7925ae8e4258aa35a009f911b6e (patch)
tree48846d3ecd8741e9d7e9748a8557d89068f32c11 /planetwars-server/src/schema.rs
parentb75c0e15dcd93794f7822ff5dfbfda0fe74f7c2a (diff)
downloadplanetwars.dev-1eb81092d7a3e7925ae8e4258aa35a009f911b6e.tar.xz
planetwars.dev-1eb81092d7a3e7925ae8e4258aa35a009f911b6e.zip
add is_ranked attribute to matches
Diffstat (limited to 'planetwars-server/src/schema.rs')
-rw-r--r--planetwars-server/src/schema.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/planetwars-server/src/schema.rs b/planetwars-server/src/schema.rs
index 2c5ab2a..803b78f 100644
--- a/planetwars-server/src/schema.rs
+++ b/planetwars-server/src/schema.rs
@@ -42,6 +42,7 @@ diesel::table! {
id -> Int4,
name -> Text,
file_path -> Text,
+ is_ranked -> Bool,
}
}