getEnvironment() == "thetool") { $table = $this->table("Preordercampaign"); $table->addColumn("cifurl", "string", ["null" => true, "default" => null, "limit" => 255, "after" => "allow_unit_update"]); $table->addColumn("cifcableurl", "string", ["null" => true, "default" => null, "limit" => 255, "after" => "cifurl"]); $table->update(); } if($this->getEnvironment() == "addressdb") { } } public function down(): void { if($this->getEnvironment() == "thetool") { $table = $this->table("Preordercampaign"); $table->removeColumn("cifcableurl"); $table->removeColumn("cifurl"); $table->save(); } if($this->getEnvironment() == "addressdb") { } } }