From a0829080fc58f19c57e2da9bfc2f721ac8ed958c Mon Sep 17 00:00:00 2001 From: Spitzer Daniel Date: Mon, 12 Feb 2024 11:59:49 +0100 Subject: [PATCH] Zeiterfassung update --- ...0205130959_timerecording_category_add_field_businesstrip.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }