aboutsummaryrefslogtreecommitdiff
path: root/crates/secd/store/sqlite/sql/write_identity.sql
blob: 8cf46c5b2b26f6d3bb2c8b4142e8744fb2c045b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
insert into identity (
       identity_public_id,
       data,
       created_at
) values (
       ?1,
       ?2,
       ?3
) on conflict(identity_public_id) do update
  set data = excluded.data
      , deleted_at = excluded.deleted_at;