summaryrefslogtreecommitdiff
path: root/db/post_migrate/20170728101014_remove_events_from_notification_settings.rb
blob: cd533391d8dd574a262f88bfdae5a608a42674d1 (plain)
1
2
3
4
5
6
7
8
9
class RemoveEventsFromNotificationSettings < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    remove_column :notification_settings, :events, :text
  end
end