mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 21:19:41 -06:00
7 lines
156 B
Ruby
7 lines
156 B
Ruby
class AddCategoriesIndexes < ActiveRecord::Migration
|
|
def change
|
|
add_index :categories, :logo_url
|
|
add_index :categories, :background_url
|
|
end
|
|
end
|