From fc0ec0d7548374e2833f3bdaf02a852861a61f1d Mon Sep 17 00:00:00 2001 From: Fred KISSIE Date: Thu, 15 Jan 2026 00:28:30 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20remove=20unused=20approval=20sta?= =?UTF-8?q?te?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/db/sqlite/schema/schema.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/server/db/sqlite/schema/schema.ts b/server/db/sqlite/schema/schema.ts index 31261029..64e37667 100644 --- a/server/db/sqlite/schema/schema.ts +++ b/server/db/sqlite/schema/schema.ts @@ -805,10 +805,7 @@ export const idpOidcConfig = sqliteTable("idpOidcConfig", { identifierPath: text("identifierPath").notNull(), emailPath: text("emailPath"), namePath: text("namePath"), - scopes: text("scopes").notNull(), - approvalState: text("approvalState") - .$type<"pending" | "approved" | "denied">() - .default("approved") + scopes: text("scopes").notNull() }); export const licenseKey = sqliteTable("licenseKey", {