id(); $table->text('question'); $table->text('answer'); $table->string('category')->default('General'); $table->boolean('is_published')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('faqs'); } };