Create a type of VARCHAR[]

Jjeanhdev5/23/2023
I want to create a type for my column of VARCHAR[] but when I used Drizzle-Kit to generate it, I got the drizzle-kit that generated "varchar[]" type instead of VARCHAR[]

Here's how I defined the column;
anonymousIds: varchar("anonymous_ids").array()
It represents an array of ids.

Thanks a lot !