Updated WarehouseShippingNote

This commit is contained in:
Luca Haid
2024-11-12 18:27:03 +01:00
parent e42a13041b
commit 560563aaa4

View File

@@ -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();
}