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