index
:
code_golf.git
main
A code golf leaderboard for Campersand 2026
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
database
/
sql
/
insert_user.sql
blob: 6017cf59a033eb575921a771709fec2deb5aa9e1 (
plain
)
1
INSERT INTO user
(
email
,
username
,
password_hash
,
is_admin
)
VALUES
(
?
1
,
?
2
,
?
3
,
?
4
)
RETURNING id
;