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: a3df8fb4e2ec23a8499379382a14ce6f79a96468 (plain)
1
2
3
4
5
6
7
# rubocop:disable all
class AddIndexOnPendingDeleteProjects < ActiveRecord::Migration
  def change
    add_index :projects, :pending_delete
  end
end