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

20160328121138_add_notification_setting_index.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 667270d6b048880aec06738be8e4a350074e8a7b (plain)
1
2
3
4
5
6
7
# rubocop:disable all
class AddNotificationSettingIndex < ActiveRecord::Migration
  def change
    add_index :notification_settings, :user_id
    add_index :notification_settings, [:source_id, :source_type]
  end
end