aboutsummaryrefslogtreecommitdiff
path: root/crates/secd/store/pg/sql/write_identity.sql
blob: eed17100b83db8ca6e2cc15b9b07fbf30a27ba97 (plain)
1
2
3
4
5
6
7
8
9
insert into auth.identity (
       identity_public_id,
       data,
       created_at
) values (
       $1,
       $2,
       $3
);