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