aboutsummaryrefslogtreecommitdiff
path: root/crates/secd/store/pg/sql/write_identity.sql
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--crates/secd/store/pg/sql/write_identity.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/secd/store/pg/sql/write_identity.sql b/crates/secd/store/pg/sql/write_identity.sql
index 67662a6..4b2745b 100644
--- a/crates/secd/store/pg/sql/write_identity.sql
+++ b/crates/secd/store/pg/sql/write_identity.sql
@@ -5,7 +5,7 @@ insert into secd.identity (
, updated_at
, deleted_at
) values (
- $1, $2::jsonb, $3, $4, $5
+ $1, $2, $3, $4, $5
) on conflict (identity_public_id) do update
set data = excluded.data
, updated_at = excluded.updated_at