25 lines
683 B
PHP
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();;
|
|
}
|
|
}
|
|
}
|