TonyGravagno / mysql-zod

Fork of erwinstone Generate Zod interfaces from MySQL database
MIT License
0 stars 0 forks source link

Support Boolean type #8

Open TonyGravagno opened 1 year ago

TonyGravagno commented 1 year ago

MySQL provides BOOLEAN or BOOL as the synonym of TINYINT(1).

Zod supports z.boolean() and related coersion and nuances.

It will be helpful for the Zod schema to use z.boolean where we are certain that TINYINT(1) actually represents a Boolean.