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

20180323150945_add_push_to_merge_request_to_notification_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b38d21a8aa82e157797143ae300ae2723355087 (plain)
1
2
3
4
5
6
7
8
9
class AddPushToMergeRequestToNotificationSettings < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :notification_settings, :push_to_merge_request, :boolean
  end
end