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

20160329144452_add_index_on_pending_delete_projects.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 15c44f74451a70a42a49e028b5fa095a56fa4eea (plain)
1
2
3
4
5
6
7
# rubocop:disable all
class AddIndexOnPendingDeleteProjects < ActiveRecord::Migration[4.2]
  def change
    add_index :projects, :pending_delete
  end
end