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

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

class AddManagementProjectIdToClusters < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    add_column :clusters, :management_project_id, :integer
  end
end