Checkpoint: Correction OAuth callback failed : ajout colonnes openId et loginMethod, password nullable, logs détaillés

This commit is contained in:
Manus Sandbox
2025-11-19 08:57:37 -05:00
parent 37e0f8da49
commit 61d64c365b
16 changed files with 4020 additions and 1 deletions

View File

@@ -12,7 +12,7 @@ export const users = mysqlTable("users", {
*/
id: int("id").autoincrement().primaryKey(),
/** Manus OAuth identifier (openId) returned from the OAuth callback. Unique per user. */
openId: varchar("openId", { length: 64 }).notNull().unique(),
openId: varchar("openId", { length: 64 }),
name: text("name"),
email: varchar("email", { length: 320 }),
loginMethod: varchar("loginMethod", { length: 64 }),