Updates for NordigenController

This commit is contained in:
David Bomba
2025-01-22 17:22:31 +11:00
parent 07c57e1361
commit 8ffbb54e3b
8 changed files with 189 additions and 20 deletions

View File

@@ -12,7 +12,18 @@ return new class extends Migration
public function up(): void
{
// "verifyBankAccount":false,
Schema::create('job_batches', function (Blueprint $table) {
$table->string('id')->primary();
$table->string('name');
$table->integer('total_jobs');
$table->integer('pending_jobs');
$table->integer('failed_jobs');
$table->longText('failed_job_ids');
$table->mediumText('options')->nullable();
$table->integer('cancelled_at')->nullable();
$table->integer('created_at');
$table->integer('finished_at')->nullable();
});
\App\Models\CompanyGateway::withTrashed()->where('gateway_key','b9886f9257f0c6ee7c302f1c74475f6c')
->cursor()