13 lines
374 B
SQL
13 lines
374 B
SQL
CREATE DATABASE IF NOT EXISTS appfactorystudiodb;
|
|
CREATE USER 'appfactorystudio'@'localhost' IDENTIFIED BY 'MYblessings1984!';
|
|
GRANT ALL ON appfactorystudiodb.* TO 'appfactorystudio'@'localhost';
|
|
|
|
CREATE DATABASE IF NOT EXISTS testdb;
|
|
CREATE USER 'appfactorystudio'@'localhost' IDENTIFIED BY 'MYblessings1984!';
|
|
GRANT ALL ON testdb.* TO 'appfactorystudio'@'localhost';
|
|
|
|
|
|
|
|
|
|
|