summaryrefslogtreecommitdiff
path: root/db/migrate/20191125133353_add_target_path_to_broadcast_message.rb
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