Farmbot-Web-App/db/migrate/20190411171401_add_show_pin...

10 lines
170 B
Ruby

class AddShowPinsToWebAppConfigs < ActiveRecord::Migration[5.2]
def change
add_column :web_app_configs,
:show_pins,
:boolean,
default: false
end
end