From 3a4de13528fc85dcbe6bc9055d97ba5cc87f5712 Mon Sep 17 00:00:00 2001 From: benj Date: Thu, 8 Dec 2022 11:16:32 -0800 Subject: update schema to `secd` add dummy `dev` command to cli --- crates/secd/store/pg/sql/find_identity.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crates/secd/store/pg/sql/find_identity.sql') diff --git a/crates/secd/store/pg/sql/find_identity.sql b/crates/secd/store/pg/sql/find_identity.sql index 3a86a83..f4c9cbf 100644 --- a/crates/secd/store/pg/sql/find_identity.sql +++ b/crates/secd/store/pg/sql/find_identity.sql @@ -2,8 +2,8 @@ select identity_public_id, data, i.created_at -from auth.identity i -join auth.identity_email ie using (identity_id) -join auth.email e using (email_id) +from secd.identity i +join secd.identity_email ie using (identity_id) +join secd.email e using (email_id) where (($1 is null) or (i.identity_public_id = $1)) and (($2 is null) or (e.address = $2)) -- cgit v1.2.3