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

20151231202530_remove_alert_type_from_broadcast_messages.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0bdd639eb214060dddb939e225c8c923b98f22d5 (plain)
1
2
3
4
5
6
# rubocop:disable all
class RemoveAlertTypeFromBroadcastMessages < ActiveRecord::Migration
  def change
    remove_column :broadcast_messages, :alert_type, :integer
  end
end