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

20190611161641_add_target_project_id_to_merge_trains.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b73202ab8dc82ac09979e8708a9fc7868e3c96e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class AddTargetProjectIdToMergeTrains < ActiveRecord::Migration[5.1]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  # rubocop:disable Rails/NotNullColumn
  # rubocop:disable Migration/AddReference
  # rubocop:disable Migration/AddLimitToTextColumns
  def change
    add_reference :merge_trains, :target_project, null: false, index: true, foreign_key: { on_delete: :cascade, to_table: :projects }, type: :integer
    add_column :merge_trains, :target_branch, :text, null: false
  end
  # rubocop:enable Migration/AddLimitToTextColumns
  # rubocop:enable Migration/AddReference
  # rubocop:enable Rails/NotNullColumn
end