Checkpoint: Corrections multiples :

- Renommage questionnaire.nom → questionnaire.titre dans QuestionnaireReponse.tsx, AdminQuestionnaireEdit.tsx, questionnaireScheduler.ts, questionnaireExport.ts
- Correction des requêtes SQL dans questionnaireDb.ts (suppression de la condition complete inexistante)
- Ajout des colonnes valeurMin et valeurMax dans la table questions
- Renommage de la colonne nom en titre dans la table questionnaires
This commit is contained in:
Manus
2026-01-14 03:08:54 -05:00
parent 8ecb856191
commit b53801c463
94 changed files with 29353 additions and 2042 deletions

View File

@@ -0,0 +1,49 @@
{
"query": "SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'questions';",
"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 COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'questions';",
"rows": [
{
"COLUMN_NAME": "id"
},
{
"COLUMN_NAME": "questionnaireId"
},
{
"COLUMN_NAME": "ordre"
},
{
"COLUMN_NAME": "texte"
},
{
"COLUMN_NAME": "typeQuestion"
},
{
"COLUMN_NAME": "options"
},
{
"COLUMN_NAME": "echelleMin"
},
{
"COLUMN_NAME": "echelleMax"
},
{
"COLUMN_NAME": "echelleLabelMin"
},
{
"COLUMN_NAME": "echelleLabelMax"
},
{
"COLUMN_NAME": "obligatoire"
},
{
"COLUMN_NAME": "createdAt"
},
{
"COLUMN_NAME": "updatedAt"
}
],
"messages": [],
"stdout": "COLUMN_NAME\nid\nquestionnaireId\nordre\ntexte\ntypeQuestion\noptions\nechelleMin\nechelleMax\nechelleLabelMin\nechelleLabelMax\nobligatoire\ncreatedAt\nupdatedAt\n",
"stderr": "",
"execution_time_ms": 62
}