Promptles
Multi-Step

Describe Relationships

When designing a database schema, don't just list the tables -- describe how they relate to each other. 'Users have many posts, posts have many comments' gives Claude the relational context it needs to generate correct foreign keys and join tables.

Where you'll practice this

One Promptles scenario teaches this principle directly.

  • The Schema Design

    You're starting a blog platform and need Claude to design the database schema from scratch. The app needs: Users (who write posts), Posts (which belong to users), Comments (which belong to both a user and a post), and Tags (which have a many-to-many relationship with posts).…

Other principles in Multi-Step