1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-05 18:59:22 +00:00
discourse/db/migrate/20161102024900_add_user_profiles_indexes.rb

7 lines
180 B
Ruby
Raw Normal View History

class AddUserProfilesIndexes < ActiveRecord::Migration[4.2]
def change
add_index :user_profiles, :profile_background
add_index :user_profiles, :card_background
end
end