DEV: create missing indexes

These indexes should have been created in aa2a9da4
This commit is contained in:
Sam Saffron 2020-05-12 09:57:31 +10:00
parent aa2a9da4b2
commit f4a53bd8f0
No known key found for this signature in database
GPG Key ID: B9606168D2FFD9F5
1 changed files with 10 additions and 0 deletions

View File

@ -16,6 +16,16 @@ class AddTopicThumbnailInformation < ActiveRecord::Migration[6.0]
ADD COLUMN IF NOT EXISTS image_upload_id bigint
SQL
execute <<~SQL
CREATE INDEX CONCURRENTLY IF NOT EXISTS
index_posts_on_image_upload_id ON posts USING btree (image_upload_id);
SQL
execute <<~SQL
CREATE INDEX CONCURRENTLY IF NOT EXISTS
index_topics_on_image_upload_id ON public.topics USING btree (image_upload_id);
SQL
ActiveRecord::Base.transaction do
add_column :theme_modifier_sets, :topic_thumbnail_sizes, :string, array: true