drop('faq'); } /** * Reverse the migrations. * @return void */ public function down() { $schema = DB::getSchemaBuilder(); $schema->create('faq', function (Blueprint $table) { $table->increments('faq_id'); $table->string('faq_shorthand', 255); $table->string('faq_question', 255); $table->text('faq_answer'); }); } }