Appending to array OnConflictUpdate()? (Postgres)
full question on stack overflow: https://stackoverflow.com/questions/78246191/error-appending-to-array-oonconflictupdaste-using-drizzle-orm-postgresql
Am I missing something? Found nothing on it on the docs.
How can I achieve this in Drizzle?
Stack Overflow
Error appending to array oOnConflictUpdaste using Drizzle ORM (Post...
My Typescript code using Drizzle ORM to insert into a 'users' table in a Postgres database:
const res = await db.insert(UsersTable)
.values(newUser)
.onConflictDoUpdate({
target:
0 Replies