summaryrefslogtreecommitdiff
path: root/db/migrate/20181203002526_add_project_bfg_object_map_column.rb
blob: 8b42cd6f94191ffe00cde2619521fa525f284c04 (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
  end
end