getEnvironment() == "thetool") { $table = $this->table("Preorder"); $table->addColumn("borderpoint_status", "enum", ["null" => true, "default" => null, "values" => ["need_measurement", "informed", "need_digging"], "after" => "accept_digging"]); $table->update(); } if($this->getEnvironment() == "addressdb") { } } public function down(): void { if($this->getEnvironment() == "thetool") { $table = $this->table("Preorder"); $table->removeColumn("borderpoint_status"); $table->update(); } if($this->getEnvironment() == "addressdb") { } } }