Janick
Janick
DTDrizzle Team
Created by Janick on 7/21/2024 in #help
array of number returning strings
The solution was to add this to my schema definition:
price: numeric('price', { precision: 10, scale: 0 })
.array()
.$type<number[]>(),
price: numeric('price', { precision: 10, scale: 0 })
.array()
.$type<number[]>(),
3 replies