mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
10 lines
212 B
SQL
10 lines
212 B
SQL
|
|
--
|
|
-- Sample db and users creation. Replace here with your own details
|
|
--
|
|
|
|
DROP DATABASE IF EXISTS cgrates;
|
|
CREATE DATABASE cgrates;
|
|
|
|
GRANT ALL on cgrates.* TO 'cgrates'@'localhost' IDENTIFIED BY 'CGRateS.org';
|