summaryrefslogtreecommitdiff
path: root/db/migrate/20181203002526_add_project_bfg_object_map_column.rb
blob: 7850f314ca86a2c63c58e54ab873d3e5aaab72b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class AddProjectBfgObjectMapColumn < ActiveRecord::Migration[5.0]
  DOWNTIME = false

  # rubocop:disable Migration/AddColumnsToWideTables
  # rubocop:disable Migration/PreventStrings
  def change
    add_column :projects, :bfg_object_map, :string
  end
  # rubocop:enable Migration/PreventStrings
  # rubocop:enable Migration/AddColumnsToWideTables
end