mirror of
https://github.com/immich-app/immich.git
synced 2026-01-02 16:19:56 -08:00
16 lines
277 B
SQL
16 lines
277 B
SQL
-- NOTE: This file is auto generated by ./sql-generator
|
|
|
|
-- SyncCheckpointRepository.getAll
|
|
select
|
|
"type",
|
|
"ack"
|
|
from
|
|
"session_sync_checkpoint"
|
|
where
|
|
"sessionId" = $1
|
|
|
|
-- SyncCheckpointRepository.deleteAll
|
|
delete from "session_sync_checkpoint"
|
|
where
|
|
"sessionId" = $1
|