mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 09:10:25 +08:00
6 lines
180 B
Ruby
6 lines
180 B
Ruby
class AddUserProfilesIndexes < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_index :user_profiles, :profile_background
|
|
add_index :user_profiles, :card_background
|
|
end
|
|
end
|