discourse/db/migrate/20161102024900_add_user_pro...

9 lines
211 B
Ruby

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