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