Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
engine-api
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
AURA
engine-api
Commits
2ead4401
Commit
2ead4401
authored
4 years ago
by
David Trattnig
Browse files
Options
Downloads
Patches
Plain Diff
Script to create test dbs.
#6
parent
3065221d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
contrib/mariadb-create-database.sql
+0
-0
0 additions, 0 deletions
contrib/mariadb-create-database.sql
contrib/mariadb-create-test-databases.sql
+11
-0
11 additions, 0 deletions
contrib/mariadb-create-test-databases.sql
with
11 additions
and
0 deletions
contrib/mariadb-database.sql
→
contrib/mariadb-
create-
database.sql
+
0
−
0
View file @
2ead4401
File moved
This diff is collapsed.
Click to expand it.
contrib/mariadb-create-test-databases.sql
0 → 100644
+
11
−
0
View file @
2ead4401
CREATE
DATABASE
aura_engine_api_0
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_unicode_ci
;
CREATE
DATABASE
aura_engine_api_1
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_unicode_ci
;
CREATE
DATABASE
aura_engine_api_2
CHARACTER
SET
utf8mb4
COLLATE
utf8mb4_unicode_ci
;
CREATE
USER
'aura_engine_api'
@
'localhost'
IDENTIFIED
BY
'1234'
;
GRANT
ALL
PRIVILEGES
ON
aura_engine_api_0
.
*
TO
'aura_engine_api'
@
'localhost'
;
GRANT
ALL
PRIVILEGES
ON
aura_engine_api_1
.
*
TO
'aura_engine_api'
@
'localhost'
;
GRANT
ALL
PRIVILEGES
ON
aura_engine_api_2
.
*
TO
'aura_engine_api'
@
'localhost'
;
FLUSH
PRIVILEGES
;
\ 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