Skip to content

Instantly share code, notes, and snippets.

@vichu
Last active December 22, 2018 22:53
Show Gist options
  • Save vichu/92aca8c35126cee5125ede19830df8ee to your computer and use it in GitHub Desktop.
Save vichu/92aca8c35126cee5125ede19830df8ee to your computer and use it in GitHub Desktop.
User keyspace
CREATE KEYSPACE user_keyspace WITH replication = {'class': 'SimpleStrategy', 'replication_factor': '1'};
CREATE TABLE user_keyspace.user_by_first_name (
firstname text PRIMARY KEY,
email text,
id uuid,
lastname text
);
CREATE TABLE user_keyspace.user_by_id (
id uuid PRIMARY KEY,
email text,
firstname text,
lastname text
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment