-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDatabase
85 lines (72 loc) · 1.13 KB
/
Database
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#Database Layout
Conference database
- CID - conference ID [pk]
- Conference name
- Conference type
- Location
- Client ID
- Start Date (will include time)
- End Date (will include time)
Speakers
- Speaker ID [pk]
- Speaker Name
- Speaker affiliation
- Speaker email
- Speaker Tel Number
- Path to Image
Attendees
- Attendee ID [pk]
- Name
- Email
- Salted Password
- Array of con ID [fk] *
Clients
- Related Organisation
- Client ID [pk]
- Contact Name
- Email
- Salted Password
- Address
Categories
- Category ID [pk]
- Name
- Keyword
- Parent ID [fk]
Rooms
- Room ID [pk]
- Name
- Conference ID [fk]
Presentation
- Conference ID [fk]
- Presentation ID [pk]
- Room ID [fk]
- Title
- Abstract
- Key Words
- Array of Cat. ID [fk]
Chat Log
- Chat ID [pk]
- Conference ID [fk]
- Attendee ID [fk]
- Message
- Date Sent
Sponsors
- Spnosor ID [pk]
- Conference ID [fk]
- Name
- Description
- Path to Image
- Website Link
White List
- Conference ID [pk]
- Attendee ID
- Email
- Token
- Type {email/token}
Black List
- Conference ID [pk]
- Attendee ID
Presentation Speaker
- Speaker ID [fk]
- Presentation ID [fk]
- Speaker Type {Keynote, Discount}