Skip to content

Instantly share code, notes, and snippets.

@pm0u
Last active July 16, 2024 18:27
Show Gist options
  • Save pm0u/b95eec1cd1874998630819f90f9d6249 to your computer and use it in GitHub Desktop.
Save pm0u/b95eec1cd1874998630819f90f9d6249 to your computer and use it in GitHub Desktop.
erDiagram

  USER ||--o{ ATTRIBUTE_VALUE : has

  USER {
   int id PK
  }

  ATTRIBUTE_VALUE {
    int id PK
    int user_id FK
    int attribute_id
    string value
  }

  ATTRIBUTE ||--o{ ATTRIBUTE_VALUE : has

ATTRIBUTE {
 int id
 string val_type
}

Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment