mirror of
https://github.com/discourse/discourse.git
synced 2025-09-11 21:04:42 +08:00
6 lines
161 B
Ruby
6 lines
161 B
Ruby
class AddCategoriesIndexes < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_index :categories, :logo_url
|
|
add_index :categories, :background_url
|
|
end
|
|
end
|