increments('id')->unsigned(); $table->integer('role_id')->unsigned()->index(); $table->integer('user_id')->unsigned()->index(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('role_user'); } }