3
0
Fork 0

fix: fix UUID column code generator for new app table wizard

This commit is contained in:
Lance Edgar 2026-02-13 10:03:48 -06:00
parent 417e28c9c7
commit fce7002675

View file

@ -816,9 +816,9 @@
} else if (dataType.type == 'Numeric') {
return `sa.Numeric(precision=${'$'}{dataType.precision}, scale=${'$'}{dataType.scale})`
} else if (dataType.type == 'UUID') {
return `UUID()`
return `model.UUID()`
} else if (dataType.type == '_fk_uuid_') {
return `UUID()`
return `model.UUID()`
} else if (dataType.type == '_other_') {
return dataType.literal
} else {