Add an index on category_id to shared drafts

This commit is contained in:
Robin Ward 2018-03-28 14:05:09 -04:00
parent efedd9745f
commit 6aef8f9cd9

View File

@ -0,0 +1,5 @@
class AddCategoryIndexToSharedDrafts < ActiveRecord::Migration[5.1]
def change
add_index :shared_drafts, :category_id
end
end