From f5a7ecd359dd7ed178495935dcf8e91597a7f978 Mon Sep 17 00:00:00 2001 From: Marko <52066939+HeX87@users.noreply.github.com> Date: Fri, 1 Mar 2024 16:42:49 +0100 Subject: [PATCH] update slack msg --- migrations/Version20240301154053.php | 31 ++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 migrations/Version20240301154053.php diff --git a/migrations/Version20240301154053.php b/migrations/Version20240301154053.php new file mode 100644 index 0000000..4ce8b56 --- /dev/null +++ b/migrations/Version20240301154053.php @@ -0,0 +1,31 @@ +addSql('ALTER TABLE `order` ADD han VARCHAR(255) DEFAULT NULL, ADD marke VARCHAR(255) DEFAULT NULL'); + } + + public function down(Schema $schema): void + { + // this down() migration is auto-generated, please modify it to your needs + $this->addSql('ALTER TABLE `order` DROP han, DROP marke'); + } +}