mirror of
https://github.com/immich-app/immich.git
synced 2025-11-14 02:26:50 -05:00
26 lines
367 B
SQL
26 lines
367 B
SQL
-- NOTE: This file is auto generated by ./sql-generator
|
|
|
|
-- VersionHistoryRepository.getAll
|
|
select
|
|
*
|
|
from
|
|
"version_history"
|
|
order by
|
|
"createdAt" desc
|
|
|
|
-- VersionHistoryRepository.getLatest
|
|
select
|
|
*
|
|
from
|
|
"version_history"
|
|
order by
|
|
"createdAt" desc
|
|
|
|
-- VersionHistoryRepository.create
|
|
insert into
|
|
"version_history" ("version")
|
|
values
|
|
($1)
|
|
returning
|
|
*
|