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

20170622162730_add_ref_fetched_to_merge_request.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 62aa1a4b4f05fb16698fc8081fa7bb9ec6145d58 (plain)
1
2
3
4
5
6
7
8
9
class AddRefFetchedToMergeRequest < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :merge_requests, :ref_fetched, :boolean
  end
end