discourse/db/migrate/20161102024900_add_user_pro...

7 lines
175 B
Ruby
Raw Normal View History

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