id(); $table->morphs('attachable'); $table->string('filename'); $table->string('filepath'); $table->string('mime_type', 100); $table->unsignedBigInteger('size'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('attachments'); } };