Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 337 Bytes

notes.md

File metadata and controls

35 lines (27 loc) · 337 Bytes
  • migrate prisma cmd
npx prisma migrate dev --name init
  • prisma studio
npx primsa studio
  • schemas:

User

  • id
  • name
  • email
  • password
  • tags[]
  • note[]

notes

  • id
  • title
  • content
  • tag []
  • userid (relation many to one)

tag

  • id
  • name
  • userId ( many to one)
  • note [] ( many to many )