Files
rustgames-catalog-server/migrations/create_tables.sql

10 lines
255 B
SQL

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
);