From e17e6382637f93d1bc129253c31f2fe76a3f5be0 Mon Sep 17 00:00:00 2001 From: Daniel Spitzer Date: Sun, 12 Oct 2025 12:13:42 +0200 Subject: [PATCH] Pop Update Features: * Komplettes kabelmanagement auf Rack He Modul Basis --- db/migrations/20251012100137_poprackmodulecable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/migrations/20251012100137_poprackmodulecable.php b/db/migrations/20251012100137_poprackmodulecable.php index 81a175057..db2799315 100644 --- a/db/migrations/20251012100137_poprackmodulecable.php +++ b/db/migrations/20251012100137_poprackmodulecable.php @@ -10,7 +10,7 @@ final class Poprackmodulecable extends AbstractMigration $table = $this->table("Poprackmodulecable", ["signed" => true]); $table->addColumn("poprackmodule_id", "integer", ["null" => false]); - $table->addColumn("cable_name", "", ["null" => false]); + $table->addColumn("cable_name", "text", ["null" => false]); $table->addColumn("port_start", "integer", ["null" => false]); $table->addColumn("port_end", "integer", ["null" => false]); $table->addColumn("fiber_start", "integer", ["null" => true]);