From b03c8c4c7078106da2988ac9249c034bcd8a5210 Mon Sep 17 00:00:00 2001 From: Luca Haid Date: Fri, 24 Oct 2025 07:32:19 +0000 Subject: [PATCH] fixed migrations --- db/migrations/20251024091253_preorder_add_files.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/migrations/20251024091253_preorder_add_files.php b/db/migrations/20251024091253_preorder_add_files.php index 8fac5627f..ab6b0ca14 100644 --- a/db/migrations/20251024091253_preorder_add_files.php +++ b/db/migrations/20251024091253_preorder_add_files.php @@ -7,7 +7,7 @@ final class PreorderAddFiles extends AbstractMigration { public function up(): void { if($this->getEnvironment() == "thetool") { $Preorder = $this->table("Preorder"); - $Preorder->addColumn("files", "text", ['null' => true, 'after' => 'notes']); + $Preorder->addColumn("files", "text", ['null' => true, 'after' => 'note']);s $Preorder->update(); } }