mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-24 17:04:43 +00:00
6 lines
148 B
Ruby
6 lines
148 B
Ruby
class ChangeWeightToFloat < ActiveRecord::Migration[6.1]
|
|
def change
|
|
change_column :weights, :max, :decimal, precision: 15, scale: 1
|
|
end
|
|
end
|