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

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

class AddExternalHostnameToIngressAndKnative < ActiveRecord::Migration[5.0]
  DOWNTIME = false

  def change
    add_column :clusters_applications_ingress, :external_hostname, :string
    add_column :clusters_applications_knative, :external_hostname, :string
  end
end