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

20220901212027_add_merge_request_id_to_environments.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4a230c737aed94a09ccdf5384668d992dbcc0fd4 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddMergeRequestIdToEnvironments < Gitlab::Database::Migration[2.0]
  def change
    add_column :environments, :merge_request_id, :bigint
  end
end