diff --git a/migrations/V121__matchmaker_queue_params.sql b/migrations/V121__matchmaker_queue_params.sql new file mode 100644 index 00000000..642924a9 --- /dev/null +++ b/migrations/V121__matchmaker_queue_params.sql @@ -0,0 +1,4 @@ +ALTER table matchmaker_queue +-- Will be used for various queue config like game options and sim mods +ADD COLUMN `params` TEXT NULL COMMENT 'json string which defines additional parameters for the queue' AFTER team_size +;