scyllax-cli 0.2.1

The CLI for scyllax -- mainly managing migrations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
-- create keyspace if not exists scyllax_migrations WITH replication = {'class': 'NetworkTopologyStrategy', 'datacenter1': 3 } AND durable_writes = true;
create keyspace if not exists scyllax_migrations with replication = { 'class': 'NetworkTopologyStrategy', 'datacenter1': 1 };
create table if not exists scyllax_migrations.migration (
    bucket int,
	version bigint,
	description text,
	installed_on timestamp,
	success boolean,
	checksum blob,
	execution_time bigint,
	primary key (bucket, version)
);