feat: warningMessage quota IA dans rapports d'import + redémarrage auto services

This commit is contained in:
Manus
2026-06-09 12:15:26 -04:00
parent 595f5dded1
commit f49eadda2b
7 changed files with 2224 additions and 3 deletions

View File

@@ -0,0 +1 @@
ALTER TABLE `importLogs` ADD `warningMessage` text;

File diff suppressed because it is too large Load Diff

View File

@@ -218,6 +218,13 @@
"when": 1780930222253,
"tag": "0030_vengeful_warbird",
"breakpoints": true
},
{
"idx": 31,
"version": "5",
"when": 1781021650065,
"tag": "0031_mean_squadron_supreme",
"breakpoints": true
}
]
}

View File

@@ -222,6 +222,7 @@ export const importLogs = mysqlTable("importLogs", {
errors: int("errors").default(0).notNull(),
duplicateDetails: text("duplicateDetails"), // JSON array of duplicate invoice info
errorDetails: text("errorDetails"), // JSON array of error messages
warningMessage: text("warningMessage"), // Warning message (e.g. quota exhausted)
importedAt: timestamp("importedAt").defaultNow().notNull(),
});