Updated storage scripts to include the ees and ers DB

This commit is contained in:
Trial97
2021-05-28 13:47:57 +03:00
committed by Dan Christian Bogos
parent 95a6398207
commit baacbf4775
2 changed files with 10 additions and 0 deletions

View File

@@ -7,3 +7,9 @@ DROP DATABASE IF EXISTS cgrates;
CREATE DATABASE cgrates;
GRANT ALL on cgrates.* TO 'cgrates'@'localhost' IDENTIFIED BY 'CGRateS.org';
-- extra DB for ers
DROP DATABASE IF EXISTS cgrates2;
CREATE DATABASE cgrates2;
GRANT ALL on cgrates2.* TO 'cgrates'@'localhost' IDENTIFIED BY 'CGRateS.org';