From d8641b7b4eec3cf268592ccdcd42ae47a0e04d76 Mon Sep 17 00:00:00 2001 From: Slowlydev <61624214+slowlydev@users.noreply.github.com> Date: Tue, 2 Jul 2024 17:31:38 +0200 Subject: [PATCH] feat: add github webhook secret to admin schema --- server/db/schema/admin.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/server/db/schema/admin.ts b/server/db/schema/admin.ts index 5ce3317e..28e3ebd0 100644 --- a/server/db/schema/admin.ts +++ b/server/db/schema/admin.ts @@ -23,6 +23,7 @@ export const admins = pgTable("admin", { githubClientSecret: text("githubClientSecret"), githubInstallationId: text("githubInstallationId"), githubPrivateKey: text("githubPrivateKey"), + githubWebhookSecret: text("githubWebhookSecret"), letsEncryptEmail: text("letsEncryptEmail"), sshPrivateKey: text("sshPrivateKey"), enableDockerCleanup: boolean("enableDockerCleanup").notNull().default(false),