aboutsummaryrefslogtreecommitdiff
path: root/crates/secd/store/pg/sql/find_identity_by_code.sql
diff options
context:
space:
mode:
authorbenj <benj@rse8.com>2022-12-12 17:06:57 -0800
committerbenj <benj@rse8.com>2022-12-12 17:06:57 -0800
commit0920c4d4f30a3345870d385d5c6f3e0919228b56 (patch)
treef54668d91db469b7304758893a51b590c8f9b0de /crates/secd/store/pg/sql/find_identity_by_code.sql
parent3a4de13528fc85dcbe6bc9055d97ba5cc87f5712 (diff)
downloadsecdiam-0920c4d4f30a3345870d385d5c6f3e0919228b56.tar
secdiam-0920c4d4f30a3345870d385d5c6f3e0919228b56.tar.gz
secdiam-0920c4d4f30a3345870d385d5c6f3e0919228b56.tar.bz2
secdiam-0920c4d4f30a3345870d385d5c6f3e0919228b56.tar.lz
secdiam-0920c4d4f30a3345870d385d5c6f3e0919228b56.tar.xz
secdiam-0920c4d4f30a3345870d385d5c6f3e0919228b56.tar.zst
secdiam-0920c4d4f30a3345870d385d5c6f3e0919228b56.zip
(oauth2 + email added): a mess that may or may not really work and needs to be refactored...
Diffstat (limited to 'crates/secd/store/pg/sql/find_identity_by_code.sql')
-rw-r--r--crates/secd/store/pg/sql/find_identity_by_code.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/secd/store/pg/sql/find_identity_by_code.sql b/crates/secd/store/pg/sql/find_identity_by_code.sql
index e016a0e..e5a0970 100644
--- a/crates/secd/store/pg/sql/find_identity_by_code.sql
+++ b/crates/secd/store/pg/sql/find_identity_by_code.sql
@@ -1,4 +1,4 @@
-select identity_email_id
+select identity_email_validation_id
from secd.email_validation
where email_validation_public_id = $1::uuid
--
@@ -8,4 +8,4 @@ select
, i.created_at
from secd.identity i
left join secd.identity_email ie using (identity_id)
-where ie.identity_email_id = $1;
+where ie.identity_email_validation_id = $1;