From 615b1434a23688a94a0090da23943b1d9b9c81ee Mon Sep 17 00:00:00 2001 From: Frank Schubert Date: Fri, 9 May 2025 13:28:42 +0200 Subject: [PATCH] added "after" to woker_add_active migration --- db/migrations/20250314130000_woker_add_active.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/migrations/20250314130000_woker_add_active.php b/db/migrations/20250314130000_woker_add_active.php index b653fa26f..c72b6aea4 100644 --- a/db/migrations/20250314130000_woker_add_active.php +++ b/db/migrations/20250314130000_woker_add_active.php @@ -7,7 +7,7 @@ final class WokerAddActive extends AbstractMigration { if ($this->getEnvironment() == "thetool") { $workerTable = $this->table("Worker"); $workerTable - ->addColumn("active", "integer", ['default' => 1]) + ->addColumn("active", "integer", ['default' => 1, "after" => "id"]) ->save(); } }