update depedencies, changes to support updated authentication-module
[squeep-indie-auther] / src / db / postgres / sql / authentication-upsert.sql
1 --
2 INSERT INTO authentication
3 (identifier, credential, otp_key)
4 VALUES
5 ($(identifier), $(credential), $(otpKey))
6 ON CONFLICT (identifier) DO UPDATE
7 SET
8 identifier = $(identifier),
9 credential = $(credential),
10 otp_key = $(otpKey)