[GAP-001] fix: Add explicit varchar type to KpiConfig.category column
TypeORM requires explicit type annotation for union type columns. Without it, TypeORM inferred 'Object' which is not a valid PostgreSQL type. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
6fa4a6c552
commit
e3dca830b7
@ -59,7 +59,7 @@ export class KpiConfig {
|
|||||||
description?: string;
|
description?: string;
|
||||||
|
|
||||||
// Clasificacion
|
// Clasificacion
|
||||||
@Column({ length: 50 })
|
@Column({ type: 'varchar', length: 50 })
|
||||||
category!: KpiCategory;
|
category!: KpiCategory;
|
||||||
|
|
||||||
@Column({ length: 50 })
|
@Column({ length: 50 })
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user