Merge "added test cases to JsonResponseTest.java"
[music.git] / distribution / cassandra / music.cql
1 CREATE KEYSPACE admin
2     WITH REPLICATION = {
3         'class' : 'SimpleStrategy',
4         'replication_factor': 1
5     }
6     AND DURABLE_WRITES = true;
7  
8 CREATE TABLE admin.keyspace_master (
9     uuid uuid,
10     keyspace_name text,
11     application_name text,
12     is_api boolean,
13     password text,
14     username text,
15     is_aaf boolean,
16     PRIMARY KEY (uuid)
17 );
18
19 CREATE USER nelson24 WITH PASSWORD ‘winman123’ SUPERUSER;
20 ALTER USER cassandra WITH PASSWORD ‘SomeLongRandomStringNoonewillthinkof’;