Zeiterfassung Anpassungen

This commit is contained in:
Spitzer Daniel
2024-01-23 16:34:14 +01:00
parent 5d01cbe6d1
commit 5f26e8ec26
22 changed files with 2005 additions and 190 deletions
@@ -11,6 +11,8 @@ final class TimerecordingEmployee extends AbstractMigration
$table = $this->table("TimerecordingEmployee", ["signed" => true]);
$table->addColumn("user_id", "integer", ["null" => false]);
$table->addColumn("auto_workinghours", "integer", ["null" => false, "default" => "0"]);
$table->addColumn("holidays", "integer", ["null" => false, "default" => "0"]);
$table->addColumn("plushours", "integer", ["null" => false, "default" => "0"]);
$table->addColumn("create_by", "integer", ["null" => false]);
$table->addColumn("edit_by", "integer", ["null" => false]);
$table->addColumn("create", "integer", ["null" => false]);