mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-02 19:30:48 +08:00
8 lines
219 B
Ruby
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
|