1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00

Fixed mat assignment rules to be db agnostic with comma delimited strings and upgraded test env db to mariadb 10.10 to match production.

This commit is contained in:
2025-01-25 20:02:22 -05:00
parent 54655a2ea9
commit 690e497654
8 changed files with 76 additions and 60 deletions

View File

@@ -0,0 +1,7 @@
class UseCommaDelimmStringForMatAssignmentRules < ActiveRecord::Migration[7.2]
def change
change_column :mat_assignment_rules, :weight_classes, :string
change_column :mat_assignment_rules, :bracket_positions, :string
change_column :mat_assignment_rules, :rounds, :string
end
end