debian-mirror-gitlab/db/migrate/20190301182457_add_external_hostname_to_ingress_and_knative.rb

13 lines
389 B
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
class AddExternalHostnameToIngressAndKnative < ActiveRecord::Migration[5.0]
DOWNTIME = false
2020-05-24 23:13:21 +05:30
# rubocop:disable Migration/PreventStrings
2019-07-07 11:18:12 +05:30
def change
2020-05-24 23:13:21 +05:30
add_column :clusters_applications_ingress, :external_hostname, :string
add_column :clusters_applications_knative, :external_hostname, :string
2019-07-07 11:18:12 +05:30
end
2020-05-24 23:13:21 +05:30
# rubocop:enable Migration/PreventStrings
2019-07-07 11:18:12 +05:30
end