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