mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-01-05 20:22:31 -05:00
6 lines
109 B
Ruby
6 lines
109 B
Ruby
|
class AddIndexToUploads < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_index :uploads, [:id, :url]
|
||
|
end
|
||
|
end
|