id(); $table->nullableMorphs('attachmentable'); $table->string('name', 50); $table->string('extension', 10); $table->string('size', 10); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('attachments'); } };