Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20181203002526_add_project_bfg_object_map_column.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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