ADD index for project_type column in projects table

This commit is contained in:
Jasder 2020-10-21 11:43:11 +08:00
parent 1ac606a8aa
commit ca3b5f4284
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class AddIndexToProjects < ActiveRecord::Migration[5.2]
def change
add_index :projects, :identifier, name: 'index_projects_on_identifier'
end
end