updated Invoice PDF generation task for more performance

This commit is contained in:
Frank Schubert
2024-09-01 19:08:11 +02:00
parent c56b7c238a
commit e770f32bc3
3 changed files with 23 additions and 6 deletions
@@ -14,7 +14,7 @@ final class CreateInvoiceJob extends AbstractMigration
$table->addColumn("to_date", "date", ["null" => false]);
$table->addColumn("started", "datetime", ["null" => true, "default" => null]);
$table->addColumn("finished", "datetime", ["null" => true, "default" => null]);
$table->addColumn("status", "string", ["null" => true, "default" => true, "limit" => 64]);
$table->addColumn("status", "string", ["null" => true, "default" => null, "limit" => 64]);
$table->addColumn("result", "json", ["null" => true, "default" => null]);
$table->addColumn("create_by", "integer", ["null" => false]);