🐛 remove unused approval state

This commit is contained in:
Fred KISSIE
2026-01-15 00:28:30 +01:00
parent b3569174b6
commit fc0ec0d754

View File

@@ -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", {