Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20181116050532_knative_external_ip.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4179e13c1b8db2119064ee37b9daf80684d57fe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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

  # rubocop:disable Migration/PreventStrings
  def change
    add_column :clusters_applications_knative, :external_ip, :string
  end
  # rubocop:enable Migration/PreventStrings
end