refactor: database column names (#23356)

This commit is contained in:
Jason Rasmussen 2025-11-04 16:03:21 -05:00 committed by GitHub
parent 0df70365d7
commit 29c14a3f58
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
43 changed files with 467 additions and 368 deletions

View file

@ -89,9 +89,9 @@ select
"tag"."parentId"
from
"tag"
inner join "tag_asset" on "tag"."id" = "tag_asset"."tagsId"
inner join "tag_asset" on "tag"."id" = "tag_asset"."tagId"
where
"tag_asset"."assetsId" = "asset"."id"
"tag_asset"."assetId" = "asset"."id"
) as agg
) as "tags",
to_json("exifInfo") as "exifInfo"