We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
チャンネルに紐づくコメントを投稿する機能のテストを作成。 紐づくチャンネルのidをURLパラムで渡す。 チャンネル内容はリクエストのディで渡す。
URL:"/channels/{id}/messages" DB:channelと多対1のリレーション
erDiagram channels ||--o{ comments : "1つのチャンネルは0以上のコメントを持つ" channels { bigint id PK string name "チャンネル名" } comments { bigint id PK bigint channel_id FK text content "投稿内容" timestamp created_at }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
概要
チャンネルに紐づくコメントを投稿する機能のテストを作成。
紐づくチャンネルのidをURLパラムで渡す。
チャンネル内容はリクエストのディで渡す。
Issue
詳細
URL:"/channels/{id}/messages"
DB:channelと多対1のリレーション
The text was updated successfully, but these errors were encountered: