id(); $table->foreignId('user_id')->constrained()->onDelete('cascade'); $table->text('body')->nullable(); $table->string('image_path')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('posts'); } };