FIX delet some index with projects table

This commit is contained in:
Jasder 2020-10-23 12:25:08 +08:00
parent abcff440e7
commit b784bb97fd
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
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