Implement points with a postgresql database
This commit is contained in:
9
migrations/create_tables.sql
Normal file
9
migrations/create_tables.sql
Normal 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
|
||||
);
|
||||
Reference in New Issue
Block a user