Rework some code issues

This commit is contained in:
2025-11-13 16:22:32 +03:00
parent 96a416b010
commit 264a45acf9
16 changed files with 239 additions and 88 deletions

11
queries/update.sql Normal file
View File

@ -0,0 +1,11 @@
UPDATE
games
SET
name = $1,
publishing_house = $2,
developer = $3,
description = $4,
multiplayer = $5,
is_free_to_play = $6
WHERE
id = $7