Implement points with a postgresql database

This commit is contained in:
2025-11-12 01:55:35 +03:00
parent ff885024d9
commit f9a1609e0c
5 changed files with 1426 additions and 24 deletions

View File

@ -0,0 +1,9 @@
CREATE TABLE IF NOT EXISTS 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
);