Skip to content
Snippets Groups Projects

fix for drop hive_post_tags without assign tags to post during upgrades

Merged Marcin requested to merge mi_upgrade_tags_fault into develop
@@ -228,7 +228,7 @@ IF NOT EXISTS(SELECT data_type FROM information_schema.columns
UPDATE hive_posts hp
SET
tags_id = tags.tags
tags_ids = tags.tags
FROM
(
SELECT
@@ -238,7 +238,7 @@ IF NOT EXISTS(SELECT data_type FROM information_schema.columns
hive_post_tags hpt
GROUP BY post_id
) as tags
WHERE hp.id = tags.post_id
WHERE hp.id = tags.post_id;
ELSE
RAISE NOTICE 'SKIPPING hive_posts upgrade - adding a tags_ids column';
END IF;
@@ -422,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;
Loading