mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 23:16:20 +08:00
7 lines
155 B
Ruby
7 lines
155 B
Ruby
|
class AddPostUploadsIndexes < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_index :post_uploads, :post_id
|
||
|
add_index :post_uploads, :upload_id
|
||
|
end
|
||
|
end
|