diff --git a/migrations/V135__add_veto_fields_to_matchmaker_queue_map_pool.sql b/migrations/V135__add_veto_fields_to_matchmaker_queue_map_pool.sql new file mode 100644 index 00000000..8293b487 --- /dev/null +++ b/migrations/V135__add_veto_fields_to_matchmaker_queue_map_pool.sql @@ -0,0 +1,4 @@ +ALTER TABLE matchmaker_queue_map_pool + ADD COLUMN veto_tokens_per_player TINYINT UNSIGNED DEFAULT 0 NOT NULL, + ADD COLUMN max_tokens_per_map TINYINT UNSIGNED DEFAULT 0 NOT NULL, + ADD COLUMN minimum_maps_after_veto FLOAT DEFAULT 1 NOT NULL CHECK (minimum_maps_after_veto > 0); \ No newline at end of file