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(); } }