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

20170728101014_remove_events_from_notification_settings.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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