mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-16 01:58:11 -05:00
12 lines
206 B
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 *
|