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: 65aa758e502044ba34dc5ea2adf3c6d6ccf89116 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column :broadcast_messages, :target_path, :string, limit: 255
  end
end