mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 03:18:23 +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
|