ADD index for project_type column in projects table
This commit is contained in:
parent
1ac606a8aa
commit
ca3b5f4284
|
@ -0,0 +1,5 @@
|
|||
class AddIndexToProjects < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
add_index :projects, :identifier, name: 'index_projects_on_identifier'
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue