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