Skip to content

Commit

Permalink
Adding some thoughts about the data model
Browse files Browse the repository at this point in the history
  • Loading branch information
chenry committed Jan 17, 2015
1 parent 2c99f82 commit 20589fb
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ target
.idea
*.iml
.vagrant
.DS_Store
76 changes: 76 additions & 0 deletions docs/db_design/database_design.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# Database Objects

## User
id
login_id
first_name
last_name
email_address
create_dttm
last_update_dttm

## User Credentials
id
user_id (FK)
password
active_ind
create_dttm
last_update_dttm

# Conference
id
name
short_desc
full_desc
start_date
end_date
location_id (FK)
create_dttm
last_update_dttm

# Location
id
name
short_desc
full_desc
create_dttm
last_update_dttm

# Location Address
id
location_id (FK)
address1
address2
city
state
zip
create_dttm
last_update_dttm

# Event
id
name
short_desc
full_desc
conference_id (FK)
event_type_id (FK)
facilitator_id (FK)
start_dttm
end_dttm
create_dttm
last_update_dttm

# Event Registration
id
user_id (FK)
event_id (FK)

# Event Type
id
name
desc

# Facilitator
id
user_id
short_bio

0 comments on commit 20589fb

Please sign in to comment.