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