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