From f15017ebd74104bec277cce1fa52f4955dbe8240 Mon Sep 17 00:00:00 2001 From: Julie Lenaerts Date: Fri, 3 Mar 2023 15:34:57 +0100 Subject: [PATCH] FIX don't delete profession_id column yet --- .../migrations/Version20230215175150.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Bundle/ChillThirdPartyBundle/migrations/Version20230215175150.php b/src/Bundle/ChillThirdPartyBundle/migrations/Version20230215175150.php index 38acc8750..321922a7e 100644 --- a/src/Bundle/ChillThirdPartyBundle/migrations/Version20230215175150.php +++ b/src/Bundle/ChillThirdPartyBundle/migrations/Version20230215175150.php @@ -25,7 +25,7 @@ final class Version20230215175150 extends AbstractMigration implements Container public function down(Schema $schema): void { $this->addSql('ALTER TABLE chill_3party.third_party DROP profession'); - $this->addSql('ALTER TABLE chill_3party.third_party ADD profession_id INT DEFAULT NULL'); +// $this->addSql('ALTER TABLE chill_3party.third_party ADD profession_id INT DEFAULT NULL'); } public function getDescription(): string @@ -60,6 +60,6 @@ final class Version20230215175150 extends AbstractMigration implements Container ); } - $this->addSql('ALTER TABLE chill_3party.third_party DROP profession_id'); +// $this->addSql('ALTER TABLE chill_3party.third_party DROP profession_id'); } }