getEnvironment() == "thetool") { $table = $this->table("WarehouseOrderRequest"); $table->addColumn("canceled", "integer", ["null" => false, "default" => 0]); $table->save();; } } public function down(): void { if ($this->getEnvironment() == "thetool") { $table = $this->table("WarehouseOrderRequest"); $table->removeColumn("canceled"); $table->save();; } } }