From a4838d204b7b184240eb2fa6d501e0f989a3d0aa Mon Sep 17 00:00:00 2001 From: Luca Haid Date: Thu, 12 Jun 2025 12:55:47 +0200 Subject: [PATCH] added rml unscheduled check --- db/migrations/20250612124001_add_new_indexes_thetool.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/db/migrations/20250612124001_add_new_indexes_thetool.php b/db/migrations/20250612124001_add_new_indexes_thetool.php index 2f0931df9..e34b8a24f 100644 --- a/db/migrations/20250612124001_add_new_indexes_thetool.php +++ b/db/migrations/20250612124001_add_new_indexes_thetool.php @@ -8,10 +8,6 @@ final class AddNewIndexesThetool extends AbstractMigration public function up(): void { if ($this->getEnvironment() == "thetool") { - $workerPermission = $this->table("WorkerPermission"); - $workerPermission->addColumn("canADBExtended", "enum", ["null" => false, "values" => 'false,true', "default" => "false", "after" => "canSuperexpert"]) - ->update(); - $network = $this->table("Network"); $network->addIndex('adb_netzgebiet_id', ['name' => 'idx_adb_netzgebiet_id']) ->addIndex('owner_id', ['name' => 'idx_owner_id']) @@ -22,10 +18,6 @@ final class AddNewIndexesThetool extends AbstractMigration public function down(): void { if ($this->getEnvironment() == "thetool") { - $workerPermission = $this->table("WorkerPermission"); - $workerPermission->removeColumn("canADBExtended") - ->save(); - $network = $this->table("Network"); $network->removeIndexByName('idx_adb_netzgebiet_id') ->removeIndexByName('idx_owner_id')