id(); $table->json('data'); $table->foreignId('import_id')->constrained()->cascadeOnDelete(); $table->text('validation_error')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('failed_import_rows'); } };