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

Changed weights max to decimal

This commit is contained in:
2023-02-02 13:16:13 +00:00
parent f011dae730
commit 05b42dbf0e
2 changed files with 7 additions and 2 deletions

View File

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