ADD index for updated_on column with projects table

This commit is contained in:
Jasder 2020-10-21 12:13:53 +08:00
parent 9477555ebd
commit e0826da950
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class AddIndexForUpdatedOnToProjects < ActiveRecord::Migration[5.2]
def change
add_index :projects, :updated_on
end
end