mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 19:46:55 +08:00
8 lines
144 B
Ruby
8 lines
144 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddIndexToUploads < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_index :uploads, %i[id url]
|
|
end
|
|
end
|