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

UPDATE: DDL Script

parent d8ef570b
No related branches found
No related tags found
2 merge requests!7Merge DataBase to development,!6Merging from Database to development
......@@ -6,8 +6,10 @@ 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 -- Calculated With max. column range 18X18
);
map_data VARCHAR(1369) NOT NULL, -- Calculated With max. column range 18X18
map_version VARCHAR(3) NOT NULL,
map_hash INTEGER NOT NULL
);
CREATE TABLE players(
player_id uniqueidentifier NOT NULL DEFAULT newid(),
......
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