debian-mirror-gitlab/db/migrate/20181116050532_knative_external_ip.rb

17 lines
466 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class KnativeExternalIp < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
2020-05-24 23:13:21 +05:30
# rubocop:disable Migration/PreventStrings
2019-02-15 15:39:39 +05:30
def change
2020-05-24 23:13:21 +05:30
add_column :clusters_applications_knative, :external_ip, :string
2019-02-15 15:39:39 +05:30
end
2020-05-24 23:13:21 +05:30
# rubocop:enable Migration/PreventStrings
2019-02-15 15:39:39 +05:30
end