this repo has no description
at main 186 B view raw
1-- Create keyspace if it doesn't exist 2CREATE KEYSPACE IF NOT EXISTS vylet 3WITH replication = { 4 'class': 'SimpleStrategy', 5 'replication_factor': 1 6}; 7 8-- Use the keyspace 9USE vylet;