id(); $table->enum('status', ['pending', 'success', 'failed'])->default('pending'); $table->string('type'); $table->longText('payload'); $table->longText('failure_reason')->nullable(); $table->timestamps(); }); } };