uuid missing in drizzle-orm/mysql-core?

Pphilbookst5/11/2023
There is a uuid method in the drizzle-orm/pg-core package, but none in the mysql-core package. What is the reason behind this? What should we use instead to generate uuids automatically?
Bbloberenober5/14/2023
We only provide what the underlying dialect provides
Bbloberenober5/14/2023
Postgres has a uuid column type and MySQL doesn't
Pphilbookst5/14/2023
oh ok! what is the alternative that i could use?

do you happen to know what prisma does, do they just do a plain crypto.randomUUID() as a fallback?
Bbloberenober5/14/2023
Yes, something like that I think