Created
December 27, 2013 21:19
-
-
Save millerjp/8152742 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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