Files
rustgames-catalog-server/migrations/20251113124629_initial.up.sql

10 lines
241 B
MySQL
Raw Normal View History

2025-11-13 16:22:32 +03:00
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
);