Can't find any discord or GH posts about it. It's not in docs either. If you create an array column (postgres), will it automatically create a default value of
[]
[]
even if no default is specified? for instance
text('someField').array()
text('someField').array()
is it correct that this will not require me to specify
someField
someField
upon insertion and will automatically create an empty array for me?
I have a text field with a default array value of []. When i run drizzle-kit introspect:pg The field gets copied in as text('myListField').default('RRAY[').array()