Files
thetool/db/migrations/20250107160000_warehouse_modify_8.php
2025-01-07 16:49:20 +01:00

25 lines
683 B
PHP

<?php declare(strict_types=1);
use Phinx\Migration\AbstractMigration;
final class WarehouseModify8 extends AbstractMigration
{
public function up(): void
{
if ($this->getEnvironment() == "thetool") {
$table = $this->table("WarehouseOrderRequest");
$table->changeColumn("distributorId", "integer", ["null" => true]);
$table->save();;
}
}
public function down(): void
{
if ($this->getEnvironment() == "thetool") {
$table = $this->table("WarehouseOrderRequest");
$table->changeColumn("distributorId", "integer", ["null" => false]);
$table->save();;
}
}
}