summaryrefslogtreecommitdiff
path: root/db/migrate/20181203002526_add_project_bfg_object_map_column.rb
blob: d8c4fe1ecf6a53fbcfeeabb261e73b47b23f6ca5 (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/AddLimitToStringColumns
  def change
    add_column :projects, :bfg_object_map, :string
  end
  # rubocop:enable Migration/AddColumnsToWideTables
  # rubocop:enable Migration/AddLimitToStringColumns
end