The following is expected: ```sql UPDATE "themes", "entities" SET "themes"."name" = :themes.name WHERE "entities"."uuid" = :uuid ``` instead when doing `->table(Tables::THEMES . ', ' . Tables::ENTITIES)` I get: ```sql UPDATE "themes," "entities" SET "themes"."name" = :themes.name WHERE "entities"."uuid" = :uuid ``` and when doing `->table(Tables::THEMES . ' , ' . Tables::ENTITIES)` I get: ```sql UPDATE "themes" "," "entities" SET "themes"."name" = :themes.name WHERE "entities"."uuid" = :uuid ```