getEnvironment() == "thetool") { $table = $this->table('Address'); $table->addColumn("manual_invoice_sepa_limit", "decimal", ["null" => true, "default" => 500, "precision" => 9, "scale" => 2, "after" => "fibu_payment_skonto_rate"]); $table->update(); } if($this->getEnvironment() == "addressdb") { } } public function down(): void { if($this->getEnvironment() == "thetool") { $this->table('Address')->removeColumn("manual_invoice_sepa_limit")->update(); } if($this->getEnvironment() == "addressdb") { } } }