diff --git a/db/migrations/20250304145421_rimo_workorder_add_remarks.php b/db/migrations/20250304145421_rimo_workorder_add_remarks.php new file mode 100644 index 000000000..f0a9da81e --- /dev/null +++ b/db/migrations/20250304145421_rimo_workorder_add_remarks.php @@ -0,0 +1,33 @@ +getEnvironment() == "thetool") { + $table = $this->table("RimoWorkorder"); + $table->addColumn("remarks", "text", ["null" => true, "after" => "rimo_team_name"]); + $table->update(); + } + + if($this->getEnvironment() == "addressdb") { + + } + } + + public function down(): void + { + if($this->getEnvironment() == "thetool") { + $table = $this->table("RimoWorkorder"); + $table->removeColumn("remarks"); + $table->update(); + } + + if($this->getEnvironment() == "addressdb") { + + } + } +}