DEV: Add missing indexes to user_profiles (#8691)

* DEV: Update model annotations
* DEV: Add missing indexes to user_profiles

The columns were changed in 24347ace10 (diff-baa5914c0c7cddf3c8b5cd9139e0d091)
This commit is contained in:
Jarek Radosz 2020-01-09 17:08:55 +01:00 committed by GitHub
parent 2a06f67099
commit 531016f99b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 19 additions and 5 deletions

View File

@ -17,5 +17,7 @@ end
#
# Indexes
#
# index_user_custom_fields_on_user_id_and_name (user_id,name)
# idx_user_custom_fields_last_reminded_at (name,user_id) UNIQUE WHERE ((name)::text = 'last_reminded_at'::text)
# idx_user_custom_fields_remind_assigns_frequency (name,user_id) UNIQUE WHERE ((name)::text = 'remind_assigns_frequency'::text)
# index_user_custom_fields_on_user_id_and_name (user_id,name)
#

View File

@ -171,10 +171,10 @@ end
#
# Indexes
#
# index_user_profiles_on_bio_cooked_version (bio_cooked_version)
# index_user_profiles_on_card_background (card_background)
# index_user_profiles_on_granted_title_badge_id (granted_title_badge_id)
# index_user_profiles_on_profile_background (profile_background)
# index_user_profiles_on_bio_cooked_version (bio_cooked_version)
# index_user_profiles_on_card_background_upload_id (card_background_upload_id)
# index_user_profiles_on_granted_title_badge_id (granted_title_badge_id)
# index_user_profiles_on_profile_background_upload_id (profile_background_upload_id)
#
# Foreign Keys
#

View File

@ -224,4 +224,5 @@ end
# flags_disagreed :integer default(0), not null
# flags_ignored :integer default(0), not null
# first_unread_at :datetime not null
# distinct_badge_count :integer default(0), not null
#

View File

@ -0,0 +1,11 @@
# frozen_string_literal: true
class UpdateUserProfilesIndexes < ActiveRecord::Migration[6.0]
def change
remove_index :user_profiles, :card_background
add_index :user_profiles, :card_background_upload_id
remove_index :user_profiles, :profile_background
add_index :user_profiles, :profile_background_upload_id
end
end