id(); $table->string('name')->nullable(); $table->text('path'); $table->morphs('fileable'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('files'); } };