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

11 lines
327 B
Ruby

class AddExternalIpToClustersApplicationsIngress < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
# rubocop:disable Migration/PreventStrings
def change
add_column :clusters_applications_ingress, :external_ip, :string
end
# rubocop:enable Migration/PreventStrings
end