This fixes the problem that we could not generate integer[] columns. Note that this is for now just a workaround, because sqlx' Encode trait does not yet support custom types that encode into slices of other custom types implementing Encode, so generating Integer[][] won't work yet.
This fixes the problem that we could not generate
integer[]
columns. Note that this is for now just a workaround, because sqlx'Encode
trait does not yet support custom types that encode into slices of other custom types implementingEncode
, so generatingInteger[][]
won't work yet.