Last active
December 31, 2023 14:00
-
-
Save DiscordBlog/ce8615e96a5002fbaf401678064c0ab8 to your computer and use it in GitHub Desktop.
Example CQL Statement
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 messages ( | |
channel_id bigint, | |
bucket int, | |
message_id bigint, | |
author_id bigint, | |
content text, | |
PRIMARY KEY ((channel_id, bucket), message_id) | |
) WITH CLUSTERING ORDER BY (message_id DESC); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
damn