id(); $table->foreignId('user_id')->constrained()->cascadeOnDelete(); $table->text('body')->nullable(); $table->foreignId('video_id')->nullable()->constrained()->nullOnDelete(); $table->string('image')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('posts'); } };