Browse Source

FIX delet some index with projects table

tags/v1.0.0
Jasder 5 years ago
parent
commit
b784bb97fd
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      db/migrate/20201023025821_remove_index_from_projects.rb

+ 7
- 0
db/migrate/20201023025821_remove_index_from_projects.rb 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

Loading…
Cancel
Save