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

20200102140148_add_expanded_environment_name_to_ci_build_metadata.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21520f86bf80228d0e138b138a4675483bf6ed5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class AddExpandedEnvironmentNameToCiBuildMetadata < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  # rubocop:disable Migration/PreventStrings
  def up
    add_column :ci_builds_metadata, :expanded_environment_name, :string, limit: 255
  end
  # rubocop:enable Migration/PreventStrings

  def down
    remove_column :ci_builds_metadata, :expanded_environment_name
  end
end