-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtinyURL_ERD
More file actions
50 lines (50 loc) · 999 Bytes
/
tinyURL_ERD
File metadata and controls
50 lines (50 loc) · 999 Bytes
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
digraph {
Customer [label="Customer
CustomerID (PK)
FirstName
LastName
PhoneNumber"]
Request [label="Request
RequestID (PK)
CustomerID (FK)
URLID (FK)
StatusID (FK)"]
Invoice [label="Invoice
InvoiceID (PK)
RequestID (FK)
Amount
CustomerID (FK)"]
URL [label="URL
URLID (PK)
OriginalURL
CreatedAt"]
ShortenedURL [label="Shortened URL
ShortenedURLID (PK)
ShortenedURL
CreatedAt"]
DeletedURLs [label="Deleted URLs
DeletedURLID (PK)
ShortenedURLID (FK)
DeletedAt"]
RequestStatus [label="Request Status
StatusID (PK)
StatusName"]
FAQ [label="FAQ
FAQID (PK)
Title"]
FAQEntry [label="FAQ Entry
FAQEntryID (PK)
FAQID (FK)
AuthorName
Question
Answer"]
Customer -> Request [label="1 to N"]
Request -> Invoice [label="1 to 1"]
Request -> URL [label="1 to 1"]
URL -> ShortenedURL [label="1 to 1"]
ShortenedURL -> DeletedURLs [label="1 to 1"]
Request -> RequestStatus [label="1 to 1"]
Customer -> Invoice [label="1 to N"]
Customer -> FAQEntry [label="1 to N"]
FAQ -> FAQEntry [label="1 to N"]
}