Fixed Voicenumber and Updated Voiceplan

This commit is contained in:
Frank Schubert
2023-11-14 20:15:06 +01:00
parent 003ab67145
commit cc4a751407
20 changed files with 232 additions and 662 deletions
@@ -23,7 +23,7 @@ final class AddPoprackTables extends AbstractMigration
$prmodule = $this->table("Poprackmodule");
$prmodule->addColumn("poprack_id", "integer", ["null" => false]);
$prmodule->addColumn("type", "integer", ["null" => false, "default" => 0, "comment" => "0:LWL/1:Device"]);
$prmodule->addColumn("device_id", "integer", ["null" => false]);
$prmodule->addColumn("device_id", "integer", ["null" => true, "default" => null]);
$prmodule->addColumn("name", "text", ["null" => true]);
$prmodule->addColumn("start_he", "integer", ["null" => false]);
$prmodule->addColumn("end_he", "integer", ["null" => false]);