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