0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-18 10:41:29 -05:00

Minor fix of syntax error introduced in previous commit.

This commit is contained in:
Andrey Antukh 2016-11-22 17:50:08 +01:00
parent 77bdd47c86
commit 417f90e677
No known key found for this signature in database
GPG key ID: 4DFEBCB8316A8B95

View file

@ -16,7 +16,7 @@ select *,
(select count(*) from images where collection = ic.id) as num_images
from images_collections as ic
where (ic."user" = :user or
uc."user" = '00000000-0000-0000-0000-000000000000'::uuid)
ic."user" = '00000000-0000-0000-0000-000000000000'::uuid)
and ic.deleted_at is null
order by ic.created_at desc;