mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
9 lines
162 B
MySQL
9 lines
162 B
MySQL
|
INSERT INTO projections.current_states (
|
||
|
projection_name
|
||
|
, instance_id
|
||
|
, last_updated
|
||
|
) VALUES (
|
||
|
$1
|
||
|
, $2
|
||
|
, now()
|
||
|
) ON CONFLICT DO NOTHING;
|