1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-06 03:09:43 +00:00
discourse/db/migrate/20161102024700_add_post_uploads_indexes.rb

7 lines
160 B
Ruby
Raw Normal View History

class AddPostUploadsIndexes < ActiveRecord::Migration[4.2]
def change
add_index :post_uploads, :post_id
add_index :post_uploads, :upload_id
end
end