Initial release
[websub-hub] / src / db / postgres / sql / authentication-upsert.sql
1 --
2 INSERT INTO authentication
3 (identifier, credential)
4 VALUES
5 ($(identifier), $(credential))
6 ON CONFLICT (identifier) DO UPDATE
7 SET
8 identifier = $(identifier),
9 credential = $(credential)