id(); $table->string('comment'); $table->foreignId('user_id')->nullable()->constrained()->nullOnDelete(); $table->boolean('active')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('comments'); } };