diff --git a/db/migrations/20240205130959_timerecording_category_add_field_businesstrip.php b/db/migrations/20240205130959_timerecording_category_add_field_businesstrip.php index e1ba00bb6..fceffdc86 100644 --- a/db/migrations/20240205130959_timerecording_category_add_field_businesstrip.php +++ b/db/migrations/20240205130959_timerecording_category_add_field_businesstrip.php @@ -9,7 +9,7 @@ final class TimerecordingCategoryAddFieldBusinesstrip extends AbstractMigration { if ($this->getEnvironment() == "thetool") { $table = $this->table("TimerecordingCategory", ["signed" => true]); - $table->addColumn("businesstrip", "integer", ["null" => false, "default" => '0', "after" => "holidays"]); + $table->addColumn("businesstrip", "integer", ["null" => false, "default" => '0', "after" => "only_admin"]); $table->update(); }