updated Invoice PDF generation task for more performance
This commit is contained in:
@@ -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]);
|
||||
|
||||
Reference in New Issue
Block a user