summaryrefslogtreecommitdiff
path: root/db/migrate/20181116050532_knative_external_ip.rb
blob: f1f903fb69270331aa12eb7129e8304e40dca4cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :clusters_applications_knative, :external_ip, :string
  end
end