-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdiagram.text
More file actions
57 lines (56 loc) · 2.73 KB
/
diagram.text
File metadata and controls
57 lines (56 loc) · 2.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
┌──────────────────────────────┐
│ register │
│ ──────────────────────────── │
│ id PK (uuid) │
│ email unique │
│ senha │
│ codinome unique │
│ genero │
│ avatar_url │
│ created_at │
│ updated_at │
└─────────────┬────────────────┘
│
(1) │ (N)
│
┌─────────────▼────────────────┐
│ eco │
│ ──────────────────────────── │
│ id PK (uuid) │
│ user_id FK -> register │
│ thread_1 │
│ thread_2 │
│ thread_3 │
│ created_at │
│ updated_at │
└─────────────┬────────────────┘
│
(1) │ (N)
│
┌─────────────▼────────────────┐
│ sussurro │
│ ──────────────────────────── │
│ id PK (uuid) │
│ eco_id FK -> eco │
│ conteudo │
│ created_at │
│ updated_at │
└──────────────────────────────┘
┌──────────────────────────────┐
│ tags │
│ ──────────────────────────── │
│ id PK (uuid) │
│ nome unique │
│ created_at │
└─────────────┬────────────────┘
│
(N) │ (N)
│
┌─────────────▼────────────────┐
│ eco_tags │
│ ──────────────────────────── │
│ eco_id FK -> eco │
│ tag_id FK -> tags │
│ created_at │
│ PK (eco_id, tag_id) │
└──────────────────────────────┘