id(); $table->string('title'); $table->string('category', 100)->nullable(); $table->text('content_html'); $table->integer('sort_order')->default(0); $table->foreignId('created_by')->constrained('users')->restrictOnDelete(); $table->foreignId('updated_by')->nullable()->constrained('users')->nullOnDelete(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('faq'); } };