debian-mirror-gitlab/db/migrate/20151231202530_remove_alert_type_from_broadcast_messages.rb

7 lines
175 B
Ruby
Raw Normal View History

# rubocop:disable all
class RemoveAlertTypeFromBroadcastMessages < ActiveRecord::Migration
def change
remove_column :broadcast_messages, :alert_type, :integer
end
end