Wrong drizzle generate with an array of text() in PSQL
I've been trying to create an array of text() using PSQL for ex. when I add the below column, drizzle generates this
but here's the schema definition
It should be
Why Drizzle doesn't do this by default? Thanks!
"custom_selected_rules" text[] DEFAULT NOT NULLbut here's the schema definition
It should be
"custom_selected_rules" text[] DEFAULT '{}'::text[] NOT NULLWhy Drizzle doesn't do this by default? Thanks!