forgeplus/db/migrate/20201023025821_remove_index...

8 lines
219 B
Ruby

class RemoveIndexFromProjects < ActiveRecord::Migration[5.2]
def change
remove_index :projects, :project_language_id
remove_index :projects, :project_category_id
remove_index :projects, :user_id
end
end