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

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

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

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