In Prisma schema, if I want a column what can be s...
# orm-help
f
In Prisma schema, if I want a column what can be string/number/boolean which type should I use?
r
@Feralheart 👋 Prisma doesn’t support overloads, so one thing you could do it keep it as a string and then convert it in your application code.
f
Thank you
👍 1