2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-10 14:42:52 +08:00
discourse/db/migrate/20150224004420_add_pinned_indexes.rb

6 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