Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save millerjp/8152742 to your computer and use it in GitHub Desktop.
Save millerjp/8152742 to your computer and use it in GitHub Desktop.
CREATE TABLE bookmark_by_user_tvshow_and_season (
user_id text,
tvshow_id text,
season int,
continue_watching boolean,
video_id text,
created timestamp,
time_in_video int,
PRIMARY KEY ((user_id, tvshow_id, season), video_id)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment