id(); $table->string('question'); $table->text('answer'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('faqs'); } };