From 16ec858ee8954ebc53247e6833d2f773988506b3 Mon Sep 17 00:00:00 2001 From: Julie Lenaerts Date: Wed, 1 Feb 2023 14:13:29 +0100 Subject: [PATCH] FIX [migration][budget] migration to change the comment on tags column from jsonb to json --- .../migrations/Version20230201131008.php | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/Bundle/ChillBudgetBundle/migrations/Version20230201131008.php diff --git a/src/Bundle/ChillBudgetBundle/migrations/Version20230201131008.php b/src/Bundle/ChillBudgetBundle/migrations/Version20230201131008.php new file mode 100644 index 000000000..7131c31f2 --- /dev/null +++ b/src/Bundle/ChillBudgetBundle/migrations/Version20230201131008.php @@ -0,0 +1,37 @@ +addSql('COMMENT ON COLUMN chill_budget.resource_type.tags IS \'(DC2Type:json)\''); + $this->addSql('COMMENT ON COLUMN chill_budget.charge_type.tags IS \'(DC2Type:json)\''); + } +}