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

@@ -0,0 +1,25 @@
{
"query": "SELECT id, email, openId FROM users LIMIT 10",
"command": "mysql --batch --raw --column-names --default-character-set=utf8mb4 --host gateway02.us-east-1.prod.aws.tidbcloud.com --port 4000 --user 4CrrYuB5tme73Qo.root --database 7PAT67UmWoxv8vwp8Bbcv6 --execute SELECT id, email, openId FROM users LIMIT 10",
"rows": [
{
"id": "1110110",
"email": "opareige@gmail.com",
"openId": ""
},
{
"id": "2010001",
"email": "o.pareige@itinova.org",
"openId": ""
},
{
"id": "2040001",
"email": "test@itinova.org",
"openId": ""
}
],
"messages": [],
"stdout": "id\temail\topenId\n1110110\topareige@gmail.com\t\n2010001\to.pareige@itinova.org\t\n2040001\ttest@itinova.org\t\n",
"stderr": "",
"execution_time_ms": 95
}

View File

@@ -0,0 +1,9 @@
{
"query": "ALTER TABLE users ADD COLUMN IF NOT EXISTS openId VARCHAR(64) NULL",
"command": "mysql --batch --raw --column-names --default-character-set=utf8mb4 --host gateway02.us-east-1.prod.aws.tidbcloud.com --port 4000 --user 4CrrYuB5tme73Qo.root --database 7PAT67UmWoxv8vwp8Bbcv6 --execute ALTER TABLE users ADD COLUMN IF NOT EXISTS openId VARCHAR(64) NULL",
"rows": [],
"messages": [],
"stdout": "",
"stderr": "",
"execution_time_ms": 51
}

View File

@@ -0,0 +1,9 @@
{
"query": "ALTER TABLE users ADD COLUMN IF NOT EXISTS loginMethod VARCHAR(64) NULL",
"command": "mysql --batch --raw --column-names --default-character-set=utf8mb4 --host gateway02.us-east-1.prod.aws.tidbcloud.com --port 4000 --user 4CrrYuB5tme73Qo.root --database 7PAT67UmWoxv8vwp8Bbcv6 --execute ALTER TABLE users ADD COLUMN IF NOT EXISTS loginMethod VARCHAR(64) NULL",
"rows": [],
"messages": [],
"stdout": "",
"stderr": "",
"execution_time_ms": 45
}

View File

@@ -0,0 +1,9 @@
{
"query": "ALTER TABLE users MODIFY COLUMN password VARCHAR(255) NULL",
"command": "mysql --batch --raw --column-names --default-character-set=utf8mb4 --host gateway02.us-east-1.prod.aws.tidbcloud.com --port 4000 --user 4CrrYuB5tme73Qo.root --database 7PAT67UmWoxv8vwp8Bbcv6 --execute ALTER TABLE users MODIFY COLUMN password VARCHAR(255) NULL",
"rows": [],
"messages": [],
"stdout": "",
"stderr": "",
"execution_time_ms": 198
}