mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
refactor: sync repository (#19581)
This commit is contained in:
parent
6feca56da8
commit
df76735f4a
10 changed files with 968 additions and 879 deletions
15
server/src/queries/sync.checkpoint.repository.sql
Normal file
15
server/src/queries/sync.checkpoint.repository.sql
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
-- NOTE: This file is auto generated by ./sql-generator
|
||||
|
||||
-- SyncCheckpointRepository.getAll
|
||||
select
|
||||
"type",
|
||||
"ack"
|
||||
from
|
||||
"session_sync_checkpoints"
|
||||
where
|
||||
"sessionId" = $1
|
||||
|
||||
-- SyncCheckpointRepository.deleteAll
|
||||
delete from "session_sync_checkpoints"
|
||||
where
|
||||
"sessionId" = $1
|
||||
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue