sendou.ink/app/db/models/users/updateProfile.sql

15 lines
314 B
SQL

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