Skip to content
Snippets Groups Projects
Commit 2ead4401 authored by David Trattnig's avatar David Trattnig
Browse files

Script to create test dbs. #6

parent 3065221d
No related branches found
No related tags found
No related merge requests found
File moved
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
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