id(); $table->string('question', 100); $table->text('answer'); $table->unsignedInteger('sort_order'); $table->timestamp('created_at')->useCurrent(); $table->timestamp('updated_at')->useCurrent()->useCurrentOnUpdate(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('faqs'); } };