ed36b19af7
Increment/Decrement methods were broken and were executing a SELECT query while selecting twice the same table so the id column reference was not precise enough. For some reason it didn't recognise the builder as an update builder AND aliases were not parsed properly I've modified the code to re-use the existing update method that is correctly implemented- BEFORE ```sql query failed: SELECT entity FROM "workspace_1wgvd1injqtife6y4rvfbu3h5"."viewField" "entity", "workspace_1wgvd1injqtife6y4rvfbu3h5"."viewField" "workspace_1wgvd1injqtife6y4rvfbu3h5.viewField" WHERE "id" IN ($1) -- PARAMETERS: ["cd665f5b-c3ce-44ec-a9b0-51a2d711287e"] error: error: column reference "id" is ambiguous ``` AFTER ```sql query: UPDATE "workspace_1wgvd1injqtife6y4rvfbu3h5"."viewField" SET "position" = "position" + 1, "updatedAt" = CURRENT_TIMESTAMP WHERE "id" IN ($1) -- PARAMETERS: ["cd665f5b-c3ce-44ec-a9b0-51a2d711287e"] ```