diff --git a/db/migrations/20251024091253_preorder_add_files.php b/db/migrations/20251024091253_preorder_add_files.php index 1b604a80c..e0902091c 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") { $table = $this->table("Preorder"); - $table->addColumn("files", "text", ['null' => true, 'after' => 'note']);s + $table->addColumn("files", "text", ['null' => true, 'after' => 'note']); $table->update(); } }