debian-mirror-gitlab/db/migrate/20190301182457_add_external_hostname_to_ingress_and_knative.rb
2020-05-24 23:13:21 +05:30

13 lines
389 B
Ruby

# 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