Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
backend
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
idatt2106-v23-03
backend
Commits
89567b07
Commit
89567b07
authored
1 year ago
by
Pedro Pablo Cardona Arroyave
Browse files
Options
Downloads
Patches
Plain Diff
Mock data for the achievements_groups table.
parent
55af037d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/resources/db/sql/testdata.sql
+13
-1
13 additions, 1 deletion
src/main/resources/db/sql/testdata.sql
with
13 additions
and
1 deletion
src/main/resources/db/sql/testdata.sql
+
13
−
1
View file @
89567b07
...
...
@@ -325,4 +325,16 @@ VALUES
(
'Myth'
,
'Reached level 70'
),
(
'Epic'
,
'Reached level 80'
),
(
'Godlike'
,
'Reached level 90'
),
(
'Immortal'
,
'Reached level 100'
);
\ No newline at end of file
(
'Immortal'
,
'Reached level 100'
);
INSERT
INTO
achievements_groups
(
achievement_name
,
group_id
)
VALUES
(
'Novice'
,
2
),
(
'Apprentice'
,
2
),
(
'Journeyman'
,
3
),
(
'Expert'
,
4
),
(
'Master'
,
5
),
(
'Legend'
,
5
),
(
'Myth'
,
5
),
(
'Epic'
,
6
),
(
'Godlike'
,
6
),
(
'Immortal'
,
6
);
\ No newline at end of file
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