getEnvironment() == "thetool") { $table = $this->table("Contractqueue"); $table->addColumn("voicenumber", "json", ["null" => true, "default" => null, "after" => "crediting_matchcode"]); $table->addColumn("voiceplan_id", "integer", ["null" => true, "default" => null, "after" => "voicenumber"]); $table->update(); } if($this->getEnvironment() == "addressdb") { } } public function down(): void { if($this->getEnvironment() == "thetool") { $this->table("Contractqueue") ->removeColumn("voiceplan_id") ->removeColumn("voicenumber") ->update(); } if($this->getEnvironment() == "addressdb") { } } }