summaryrefslogtreecommitdiff
path: root/db/migrate/20160329144452_add_index_on_pending_delete_projects.rb
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