mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 02:17:33 +00:00
9 lines
162 B
SQL
9 lines
162 B
SQL
INSERT INTO projections.current_states (
|
|
projection_name
|
|
, instance_id
|
|
, last_updated
|
|
) VALUES (
|
|
$1
|
|
, $2
|
|
, now()
|
|
) ON CONFLICT DO NOTHING; |