Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Akamu
data-schemas
Commits
f702a28b
Commit
f702a28b
authored
Dec 06, 2018
by
Frederik Wegner
Browse files
Initial commit. Add schemas from go server master branch.
parents
Pipeline
#219
failed with stages
in 24 seconds
Changes
3
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
README.md
0 → 100644
View file @
f702a28b
# DATA SCHEMAS
This repository contains the schemas of the akamu MySQL database that are used globally across multiple projects.
akamuschema.sql
0 → 100644
View file @
f702a28b
This diff is collapsed.
Click to expand it.
deploydata.sql
0 → 100644
View file @
f702a28b
-- -----------------------------------------------------
-- Insert test data
-- -----------------------------------------------------
INSERT
IGNORE
INTO
image
(
idimage
,
path
)
VALUES
(
1
,
"noavatar.svg"
);
INSERT
IGNORE
INTO
title
(
idtitle
,
name
,
subject
,
unlock_score
,
unlock_win
)
VALUES
(
1
,
""
,
1
,
0
,
0
);
INSERT
IGNORE
INTO
avatar
(
idavatar
,
image
,
level
)
VALUES
(
1
,
1
,
0
);
-- default "no avatar"-avatar
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment