fix(imports): 导入向导 sheets_json 扩容为 MEDIUMTEXT
start_import_wizard 存整表行数据,TEXT(64KB) 在 430 行文件上触发 Data too long for column 'sheets_json',扩容至 MEDIUMTEXT(16MB) 并补迁移 (实际表名 import_runs,原迁移误写 import_run 导致空跑)
This commit is contained in:
@@ -20,7 +20,7 @@ export class ImportRun {
|
||||
fileName: string;
|
||||
|
||||
/** Serialized sheet data — parsed rows are kept here for v1. */
|
||||
@Column({ name: 'sheets_json', type: 'text' })
|
||||
@Column({ name: 'sheets_json', type: 'mediumtext' })
|
||||
sheetsJson: string;
|
||||
|
||||
/** Serialized ImportRunSettings — confirmed mapping/policies from AI preflight. */
|
||||
|
||||
Reference in New Issue
Block a user