ニュース

I have a field in my postgreSQL table that is of type TEXT[]. Xo generates a model for it where the field is of type []sql.NullString. When I do an insert operation on the model, I get the following ...
The generated code for insert looks something like this: const sqlstr = `INSERT INTO public.users (` + `id, email, first_name, last_name` + `) VALUES (` + `$1, $2, $3 ...