Files
zitadel/apps/api/internal/eventstore/handler/v2/state_lock.sql
2025-08-05 15:20:32 -07:00

9 lines
162 B
SQL

INSERT INTO projections.current_states (
projection_name
, instance_id
, last_updated
) VALUES (
$1
, $2
, now()
) ON CONFLICT DO NOTHING;