You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sqm-dashboards/db/migrate/20211217163827_add_benchmar...

9 lines
346 B

class AddBenchmarksToAdminDataItems < ActiveRecord::Migration[6.1]
def change
add_column :admin_data_items, :watch_low_benchmark, :float
add_column :admin_data_items, :growth_low_benchmark, :float
add_column :admin_data_items, :approval_low_benchmark, :float
add_column :admin_data_items, :ideal_low_benchmark, :float
end
end