/schema1.cql Secret
Last active
January 4, 2023 01:00
This file contains hidden or 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 messages ( | |
channel_id bigint, | |
message_id bigint, | |
author_id bigint, | |
content text, | |
PRIMARY KEY (channel_id, message_id) | |
) WITH CLUSTERING ORDER BY (message_id DESC); |
Thank you!
Ah. Interesting
Very cool
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
nice