increments('id'); $table->integer('user_id')->unsigned(); $table->integer('user_linking_id')->unsigned(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('linkings'); } }