Skip to content
Snippets Groups Projects
Commit a70b3efb authored by Gehrung Jonas's avatar Gehrung Jonas
Browse files

Add: DDL_Script; UPDATE: Package Structure

parent e1d31ce3
No related branches found
No related tags found
2 merge requests!7Merge DataBase to development,!6Merging from Database to development
CREATE TABLE maps(
map_id uniqueidentifier NOT NULL DEFAULT newid(),
map_name VARCHAR(30) NOT NULL,
map_size VARCHAR(6) NOT NULL,
map_data VARCHAR(1369) NOT NULL
);
CREATE TABLE players(
player_id uniqueidentifier NOT NULL DEFAULT newid(),
player_name VARCHAR(30) NOT NULL,
games_won INTEGER NOT NULL,
games_lost INTEGER NOT NULL,
kills INTEGER NOT NULL,
deaths INTEGER NOT NULL,
blocks_destroyed INTEGER NOT NULL,
ingame_time VARCHAR(256) NOT NULL
);
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment