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

10 lines
233 B
Ruby
Raw Normal View History

2019-01-03 12:48:30 +05:30
class AddExternalIpToClustersApplicationsIngress < ActiveRecord::Migration
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