From 560563aaa4ca77ebd6e871705498ccea415db293 Mon Sep 17 00:00:00 2001 From: Luca Haid Date: Tue, 12 Nov 2024 18:27:03 +0100 Subject: [PATCH] Updated WarehouseShippingNote --- db/migrations/20241112180000_warehouse_modify_2.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/migrations/20241112180000_warehouse_modify_2.php b/db/migrations/20241112180000_warehouse_modify_2.php index 72b3da21f..6ba90a1e9 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", "string", ["null" => true, "limit" => 255]); + $WarehouseArticle->changeColumn("cheapestSellPrice", "text", ["null" => true, "limit" => 255]); $WarehouseArticle->save(); }