Fix Broken Docker Builds
[music.git] / music-rest / distribution / cassandra_job / admin.cql
1 CREATE KEYSPACE IF NOT EXISTS admin
2     WITH REPLICATION = {
3         'class' : 'SimpleStrategy',
4         'replication_factor': 1
5     }
6     AND DURABLE_WRITES = true;
7  
8 CREATE TABLE IF NOT EXISTS 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 );