Farmbot-Web-App/db/migrate/20190501143201_add_map_size...

8 lines
227 B
Ruby

class AddMapSizesToWebAppConfig < ActiveRecord::Migration[5.2]
def change
add_column :web_app_configs, :map_size_x, :integer, default: 2900
add_column :web_app_configs, :map_size_y, :integer, default: 1400
end
end