gitlab-org--gitlab-foss/db/migrate/20190301182457_add_external...

13 lines
389 B
Ruby
Raw Normal View History

2019-03-07 21:51:43 +00:00
# frozen_string_literal: true
class AddExternalHostnameToIngressAndKnative < ActiveRecord::Migration[5.0]
DOWNTIME = false
# rubocop:disable Migration/PreventStrings
2019-03-07 21:51:43 +00:00
def change
add_column :clusters_applications_ingress, :external_hostname, :string
add_column :clusters_applications_knative, :external_hostname, :string
2019-03-07 21:51:43 +00:00
end
# rubocop:enable Migration/PreventStrings
2019-03-07 21:51:43 +00:00
end