sendou.ink/app/db/models/users/updateProfile.sql
Zen 28ca966256
Fixes #839: Allow user to select favorite badge (#1345)
* temp save

* temp save

* temp save

* tempsave

* rollback

* temp save

* added combobox

* finish combobox, discard

* restore combobox

* page load successfully

* finish

* rm excessive changes

* fix prettier

* fix prettier again
2023-04-19 23:50:07 +03:00

14 lines
262 B
SQL

update
"User"
set
"country" = @country,
"bio" = @bio,
"customUrl" = @customUrl,
"stickSens" = @stickSens,
"motionSens" = @motionSens,
"inGameName" = @inGameName,
"css" = @css,
"favoriteBadgeId" = @favoriteBadgeId
where
"id" = @id returning *