getEnvironment() == "thetool") { $table = $this->table("WarehouseEShopOrder"); $table->addColumn("deliveryAddressAdditional", "string", ["limit" => 255, "null" => true]); $table->save();; } } public function down(): void { if ($this->getEnvironment() == "thetool") { $table = $this->table("WarehouseEShopOrder"); $table->removeColumn("deliveryAddressAdditional"); $table->save();; } } }