mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-11-04 00:02:37 +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;
 |