mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 11:58:27 +00: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
|