diff --git a/setup/db/create-database-simulator.sql b/setup/db/create-database-simulator.sql new file mode 100644 index 00000000000..ed3e65be074 --- /dev/null +++ b/setup/db/create-database-simulator.sql @@ -0,0 +1,11 @@ +DROP DATABASE IF EXISTS `cloud_simulator`; + +CREATE DATABASE `cloud_simulator`; + +GRANT ALL ON cloud_simulator.* to cloud@`localhost` identified by 'cloud'; +GRANT ALL ON cloud_simulator.* to cloud@`%` identified by 'cloud'; + +GRANT process ON *.* TO cloud@`localhost`; +GRANT process ON *.* TO cloud@`%`; + +commit;