id(); $table->foreignId('comment_id') ->constrained(config('comments.table_names.comments', 'comments')) ->cascadeOnDelete(); $table->string('file_path'); $table->string('original_name'); $table->string('mime_type'); $table->unsignedBigInteger('size'); $table->string('disk'); $table->timestamps(); }); } };