From 1e436f242ed43b037b06eb6ac5143bf4d144477c Mon Sep 17 00:00:00 2001 From: David Taylor Date: Mon, 11 Apr 2022 13:28:24 +0100 Subject: [PATCH] DEV: Move tag_group cleanup from post_migrate -> migrate (#16434) There is no need to wait until after the deploy for this cleanup. In fact, running it later will mean there could be a window of a few minutes during which the site is broken. The only requirement is that it runs after the broken `20220401130745_create_category_required_tag_groups` migration. Followup to 39a6de3d73c442b470611c63b52f39eff505e70b --- ...5246_remove_category_required_tag_groups_without_tag_groups.rb | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename db/{post_migrate => migrate}/20220407195246_remove_category_required_tag_groups_without_tag_groups.rb (100%) diff --git a/db/post_migrate/20220407195246_remove_category_required_tag_groups_without_tag_groups.rb b/db/migrate/20220407195246_remove_category_required_tag_groups_without_tag_groups.rb similarity index 100% rename from db/post_migrate/20220407195246_remove_category_required_tag_groups_without_tag_groups.rb rename to db/migrate/20220407195246_remove_category_required_tag_groups_without_tag_groups.rb