id(); $table->timestamp('completed_at')->nullable(); $table->string('file_name'); $table->string('file_path'); $table->string('importer'); $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('imports'); } };