Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 463 Bytes

ERD.md

File metadata and controls

21 lines (17 loc) · 463 Bytes

Application ERD

Generated by prisma-markdown

default

erDiagram
"User" {
    Int id PK
    String email UK
}
Loading

User

User model This model is used to initialize the prisma client and can be changed according to the applications' needs.

Properties

  • id: The user's id (primary key). It is automatically generated.
  • email: The user's email. It is unique.