id(); $table->foreignIdFor(ConnectedApp::class, 'app_id'); $table->foreignId('role_id')->comment('role_id from spatie roles table'); $table->dateTime('duration'); $table->unique(['app_id', 'role_id']); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('app_roles'); } };