scylladb / scylla-cloud-getting-started

https://cloud-getting-started.scylladb.com
43 stars 11 forks source link

docs: Issue in page Design and Data Model #33

Open ShuiMu-peng opened 7 months ago

ShuiMu-peng commented 7 months ago

I would like to report an issue in page https://cloud-getting-started.scylladb.com/main/design-and-data-model

Problem

catalogQueries, Q2: Create a Table

CREATE TABLE songs (
        id int,
        title text,
        album text,
        artist text,
        created_at timestamp,
        updated_at timestamp   // Here, a comma is missing
        PRIMARY KEY (id, updated_at)
);

Suggest a fix

Add comma

annastuchlik commented 6 months ago

@ShuiMuNianHuaLP Thank you for reporting.

@DanielHe4rt Can you address it?

DanielHe4rt commented 6 months ago

Hey @ShuiMuNianHuaLP thanks for reporting it!

It's a really cool opportunity to send a pull request to fix it. I can do it but since you're the one who spotted it would be cool to have your contribution here in the repository.

Let me know if you're going to do the PR or want me to do.

Cheers!