projects
/
squeep-indie-auther
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
update dependencies and devDependencies
[squeep-indie-auther]
/
src
/
db
/
sqlite
/
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