Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BattleArena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Scherbaum Maximilian
BattleArena
Commits
103a61b9
Commit
103a61b9
authored
1 year ago
by
Gehrung Jonas
Browse files
Options
Downloads
Patches
Plain Diff
UPDATE: DDL Script
parent
d8ef570b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!7
Merge DataBase to development
,
!6
Merging from Database to development
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/de/hdm_stuttgart/battlearena/Persistance/Scripts/DDL_Script.sql
+4
-2
4 additions, 2 deletions
..._stuttgart/battlearena/Persistance/Scripts/DDL_Script.sql
with
4 additions
and
2 deletions
src/main/java/de/hdm_stuttgart/battlearena/Persistance/Scripts/DDL_Script.sql
+
4
−
2
View file @
103a61b9
...
...
@@ -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
(),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment