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

12 lines
206 B
SQL

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