Farmbot-Web-App/db/migrate/20180215064728_add_photo_filters_to_web_app_configs.rb

8 lines
230 B
Ruby
Raw Normal View History

2018-02-15 03:51:38 -07:00
class AddPhotoFiltersToWebAppConfigs < ActiveRecord::Migration[5.1]
safety_assured
2018-02-15 03:51:38 -07:00
def change
add_column :web_app_configs, :photo_filter_begin, :string
add_column :web_app_configs, :photo_filter_end, :string
end
end