debian-mirror-gitlab/db/migrate/20160329144452_add_index_on_pending_delete_projects.rb

8 lines
151 B
Ruby
Raw Normal View History

# rubocop:disable all
2016-06-02 11:05:42 +05:30
class AddIndexOnPendingDeleteProjects < ActiveRecord::Migration
def change
add_index :projects, :pending_delete
end
end