Farmbot-Web-App/db/migrate/20200204230135_add_show_zon...

9 lines
207 B
Ruby
Raw Permalink Normal View History

2020-02-07 16:05:16 -07:00
class AddShowZonesToWebAppConfig < ActiveRecord::Migration[6.0]
def change
add_column :web_app_configs,
:show_zones,
:boolean,
default: false
end
end