id(); $table->string('type'); // orders, reclamations $table->string('filename'); $table->string('status'); // new, in_progress, done $table->mediumText('result')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('imports'); } };