🐛 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(), identifierPath: text("identifierPath").notNull(),
emailPath: text("emailPath"), emailPath: text("emailPath"),
namePath: text("namePath"), namePath: text("namePath"),
scopes: text("scopes").notNull(), scopes: text("scopes").notNull()
approvalState: text("approvalState")
.$type<"pending" | "approved" | "denied">()
.default("approved")
}); });
export const licenseKey = sqliteTable("licenseKey", { export const licenseKey = sqliteTable("licenseKey", {