debian-mirror-gitlab/db/migrate/20180212030105_add_external_ip_to_clusters_applications_ingress.rb
2019-02-15 15:39:39 +05:30

10 lines
238 B
Ruby

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