1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00
Files
wrestlingdev.com/db/migrate/20230202130918_change_weight_to_float.rb

6 lines
148 B
Ruby

class ChangeWeightToFloat < ActiveRecord::Migration[6.1]
def change
change_column :weights, :max, :decimal, precision: 15, scale: 1
end
end