increments('id'); $table->integer('wsrequest_id')->unsigned(); $table->text('response'); $table->timestamps(); $table->foreign('wsrequest_id')->references('id')->on('wsrequests'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('wsresponses'); } }