summaryrefslogtreecommitdiff
path: root/db/migrate/20181203002526_add_project_bfg_object_map_column.rb
blob: 5e6d416895c3c6d51b8a5f1873aca721d87774db (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column :projects, :bfg_object_map, :string # rubocop:disable Migration/AddLimitToStringColumns
  end
end