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