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

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

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

  # rubocop:disable Migration/PreventStrings
  def change
    add_column :service_desk_settings, :project_key, :string, limit: 255
  end
  # rubocop:enable Migration/PreventStrings
end