uuid('id')->primary(); $table->uuid('role_id'); $table->uuid('permission_id'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('role_permissions'); } };