getEnvironment() == "thetool") { } if($this->getEnvironment() == "addressdb") { $table = $this->table("Hausnummer"); $table->addColumn("fcp_id", "integer", ["null" => true, "default" => null, "after" => "rimo_op_state"]); $table->save(); } } public function down(): void { if($this->getEnvironment() == "thetool") { } if($this->getEnvironment() == "addressdb") { $this->table("Hausnummer")->removeColumn("fcp_id")->save(); } } }