Array of enums wrong type
Hello!
I'm trying to migrate a column from enum to an array of enums, like this:
but when I try to insert any data, I get this type error:
roles: [] as UserRole[],
Type '("UNKNOWN" | "STUDENT" | "TEACHER" | "SUPERUSER" | "ROOT")[]' is not assignable to type '"UNKNOWN" | "STUDENT" | "TEACHER" | "SUPERUSER" | "ROOT" | undefined'.How does one do it?
1 Reply
I see, I was deriving the type from drizzle-zod, and it couldn't figure the shape of the key, so I had to provide it like this: