mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-08 06:37:26 -05:00
15 lines
314 B
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 *
|