erDiagram
  PERSON ||--o{ ADDRESS : lives_at
  PERSON {
    string name PK
  }
  ADDRESS {
    string street
    string city
  }
---
┌────────────────┐      ┌──────────────────┐
│ PERSON         │      │ ADDRESS          │
├────────────────┤│───○╟├──────────────────┤
│ PK string name │lives_│    string street │
└────────────────┘      │    string city   │
                        └──────────────────┘
