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/20211217142634_add_benchmar...

9 lines
327 B

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