adding the missing database creation file when we seperated cloud_simulator database from cloud

This commit is contained in:
Prasanna Santhanam 2011-12-14 23:42:56 +05:30
parent f9e9916d80
commit 3a3b31f7a2
1 changed files with 11 additions and 0 deletions

View File

@ -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;