diff --git a/db/migrations/20241112180000_warehouse_modify_2.php b/db/migrations/20241112180000_warehouse_modify_2.php index 6ba90a1e9..aa6899f9b 100644 --- a/db/migrations/20241112180000_warehouse_modify_2.php +++ b/db/migrations/20241112180000_warehouse_modify_2.php @@ -18,7 +18,7 @@ final class WarehouseModify2 extends AbstractMigration { //WarehouseArticle Table $WarehouseArticle = $this->table("WarehouseArticle", ["signed" => true]); - $WarehouseArticle->changeColumn("cheapestSellPrice", "text", ["null" => true, "limit" => 255]); + $WarehouseArticle->changeColumn("cheapestSellPrice", "text", ["null" => true]); $WarehouseArticle->save(); }