How can I use `bit varying(255)` type in postgres using drizzle-orm and drizzle-kit?

I have a column that should have bit varying(255) type. But I don't see this type in pg-core. Also when I am trying to use customType it fails to use it as type. Since it wraps the type name in quotes. Making it to become my_field "bit varying(255)" and it causes failure during migration.

I can add this type to the drizzle-kit and drizzle-orm, if necessary.

If you know some other way I can try to achieve this goal, please tell me.
Was this page helpful?