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

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

class AddProjectKeyToJiraTrackerData < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  # rubocop:disable Migration/AddLimitToTextColumns
  # limit is added in 20200619154528_add_text_limit_to_jira_tracker_data_project_key
  def change
    add_column :jira_tracker_data, :project_key, :text
  end
  # rubocop:enable Migration/AddLimitToTextColumns
end