id(); $table->morphs('mediable'); // mediable_type, mediable_id $table->string('file_path'); $table->string('file_name'); $table->string('mime_type'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('media'); } };