2 parents 5cace88 + 8c02a53 commit c76f3e5Copy full SHA for c76f3e5
1 file changed
packages/das/src/webhook/handlers/installation.handler.ts
@@ -26,7 +26,7 @@ export class InstallationHandler {
26
.createQueryBuilder()
27
.update()
28
.set({ installationId: null, registered: false })
29
- .where("installationId = :id", { id: String(installationId) })
+ .where("installation_id = :id", { id: String(installationId) })
30
.execute();
31
return;
32
}
@@ -49,7 +49,7 @@ export class InstallationHandler {
49
installationId: String(installationId),
50
addedAt: new Date().toISOString(),
51
})
52
- .orUpdate(["installationId"], ["repoFullName"])
+ .orUpdate(["installation_id"], ["repo_full_name"])
53
54
this.logger.log(`Tracking repo: ${repo.full_name}`);
55
0 commit comments