debian-mirror-gitlab/db/migrate/20180212030105_add_external_ip_to_clusters_applications_ingress.rb

10 lines
238 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
class AddExternalIpToClustersApplicationsIngress < ActiveRecord::Migration[4.2]
2018-03-27 19:54:05 +05:30
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
add_column :clusters_applications_ingress, :external_ip, :string
end
end