summaryrefslogtreecommitdiff
path: root/db/migrate/20190930063627_add_management_project_id_to_clusters.rb
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