mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
14 lines
298 B
SQL
14 lines
298 B
SQL
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='ANSI';
|
|
|
|
DROP DATABASE IF EXISTS `cloud_usage`;
|
|
|
|
CREATE DATABASE `cloud_usage`;
|
|
|
|
GRANT ALL ON cloud_usage.* to cloud@`localhost`;
|
|
GRANT ALL ON cloud_usage.* to cloud@`%`;
|
|
|
|
GRANT process ON *.* TO cloud@`localhost`;
|
|
GRANT process ON *.* TO cloud@`%`;
|
|
|
|
commit;
|