Farmbot-Web-App/db/migrate/20180829211322_add_show_motor_plot_to_web_app_configs.rb

10 lines
234 B
Ruby
Raw Normal View History

2018-08-29 18:55:25 -06:00
class AddShowMotorPlotToWebAppConfigs < ActiveRecord::Migration[5.2]
safety_assured
def change
add_column :web_app_configs,
:show_motor_plot,
:boolean,
default: false
end
end