mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:29:30 +08:00
7 lines
204 B
Ruby
7 lines
204 B
Ruby
class AddPinnedIndexes < ActiveRecord::Migration
|
|
def change
|
|
add_index :topics, :pinned_globally, where: 'pinned_globally'
|
|
add_index :topics, :pinned_at, where: 'pinned_at IS NOT NULL'
|
|
end
|
|
end
|