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

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

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

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