mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
7 lines
228 B
SQL
7 lines
228 B
SQL
DROP KEYSPACE IF EXISTS cgrates;
|
|
|
|
create keyspace cgrates with replication = { 'class' : 'SimpleStrategy', 'replication_factor' : 1 };
|
|
|
|
create user cgrates with password 'CGRateS.org';
|
|
grant all on keyspace cgrates to cgrates;
|