2017-08-31 00:06:56 -04:00
|
|
|
class AddPinnedIndexes < ActiveRecord::Migration[4.2]
|
2015-02-23 19:53:32 -05:00
|
|
|
def change
|
|
|
|
add_index :topics, :pinned_globally, where: 'pinned_globally'
|
|
|
|
add_index :topics, :pinned_at, where: 'pinned_at IS NOT NULL'
|
|
|
|
end
|
|
|
|
end
|