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

  DOWNTIME = false

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