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

View File

@ -0,0 +1,11 @@
-- Add up migration script here
CREATE TABLE games(
id SERIAL PRIMARY KEY,
name TEXT NOT NULL,
publishing_house TEXT NOT NULL,
developer TEXT NOT NULL,
description TEXT NOT NULL,
multiplayer BOOLEAN NOT NULL,
is_free_to_play BOOLEAN NOT NULL
);