id(); $table->timestamp('completed_at')->nullable(); $table->string('file_disk'); $table->string('file_name')->nullable(); $table->string('exporter'); $table->unsignedInteger('processed_rows')->default(0); $table->unsignedInteger('total_rows'); $table->unsignedInteger('successful_rows')->default(0); $table->foreignId('user_id')->constrained()->cascadeOnDelete(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('exports'); } };