summaryrefslogtreecommitdiff
path: root/db/migrate/20190301182457_add_external_hostname_to_ingress_and_knative.rb
blob: 4cb6053fbe16cc972f731c9a3becf4ec34575390 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

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

  # rubocop:disable Migration/PreventStrings
  def change
    add_column :clusters_applications_ingress, :external_hostname, :string
    add_column :clusters_applications_knative, :external_hostname, :string
  end
  # rubocop:enable Migration/PreventStrings
end