fixed migrations

This commit is contained in:
Luca Haid
2025-10-24 07:32:19 +00:00
parent 04b302a6d5
commit b03c8c4c70

View File

@@ -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();
}
}