diagram.er 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. title {label: "tinynote Entity-Relationship diagram", size: "24"}
  2. # Entities
  3. entity {size: "16", font: "Courier"}
  4. [users] {bgcolor: "#ececfc"}
  5. id {label: "(PK1) CHAR(36) NOT NULL"}
  6. username {label: "(UK1) VARCHAR(32) NOT NULL"}
  7. email {label: "(UK2) VARCHAR(255) NOT NULL"}
  8. password {label: "VARCHAR(255) NOT NULL"}
  9. active {label: "BOOLEAN NOT NULL DEFAULT FALSE"}
  10. is_admin {label: "BOOLEAN NOT NULL DEFAULT FALSE"}
  11. created_at {label: "DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP"}
  12. updated_at {label: "DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP"}
  13. [notes] {bgcolor: "#fbfbdb"}
  14. id {label: "(PK1) CHAR(36) NOT NULL"}
  15. user_id {label: "(FK1) CHAR(36) NOT NULL"}
  16. title {label: "VARCHAR(255) NOT NULL"}
  17. body {label: "TEXT NOT NULL"}
  18. created_at {label: "DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP"}
  19. updated_at {label: "DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP"}
  20. [tags] {bgcolor: "#d0e0d0"}
  21. id {label: "(PK1) CHAR(36) NOT NULL"}
  22. user_id {label: "(FK1, UK1) CHAR(36) NOT NULL"}
  23. name {label: "(UK1) VARCHAR(64) NOT NULL"}
  24. created_at {label: "DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP"}
  25. updated_at {label: "DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP"}
  26. [notes_tags] {bgcolor: "#eee0a0"}
  27. id {label: "(PK1) CHAR(36) NOT NULL"}
  28. note_id {label: "(FK1, UK1) CHAR(36) NOT NULL"}
  29. tag_id {label: "(FK2, UK1) CHAR(36) NOT NULL"}
  30. created_at {label: "DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP"}
  31. updated_at {label: "DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP"}
  32. # Relationships
  33. users 1--* notes
  34. users 1--* tags
  35. notes 1--* notes_tags
  36. tags 1--* notes_tags