Skip to content
Snippets Groups Projects
Commit e71379fe authored by Bartek Wrona's avatar Bartek Wrona
Browse files

Merge branch 'mi_upgrade_tags_fault' into 'develop'

fix for drop hive_post_dags without assign tags to post during upgrades

See merge request !405
parents dd609a56 25074d7b
No related branches found
No related tags found
2 merge requests!456Release candidate v1 24,!405fix for drop hive_post_tags without assign tags to post during upgrades
......@@ -225,6 +225,20 @@ IF NOT EXISTS(SELECT data_type FROM information_schema.columns
WHERE table_name = 'hive_posts' AND column_name = 'tags_ids') THEN
ALTER TABLE ONLY hive_posts
ADD COLUMN tags_ids INTEGER[];
UPDATE hive_posts hp
SET
tags_ids = tags.tags
FROM
(
SELECT
post_id as post_id,
array_agg( hpt.tag_id ) as tags
FROM
hive_post_tags hpt
GROUP BY post_id
) as tags
WHERE hp.id = tags.post_id;
ELSE
RAISE NOTICE 'SKIPPING hive_posts upgrade - adding a tags_ids column';
END IF;
......@@ -408,4 +422,4 @@ CREATE INDEX IF NOT EXISTS hive_posts_promoted_id_idx ON hive_posts (promoted, i
CREATE INDEX IF NOT EXISTS hive_posts_tags_ids_idx ON hive_posts USING gin(tags_ids gin__int_ops);
DROP TABLE IF EXISTS hive_post_tags;
--DROP TABLE IF EXISTS hive_post_tags;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment