Skip to content
/ scene Public

Event app that allows clubs and organizations to create and share events while allowing members and guests to find and join events.

Notifications You must be signed in to change notification settings

wildintu/scene

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

scene

Event app that allows clubs and organizations to create and share events while allowing members and guests to find and join events.

Domain Diagram

    erDiagram
        CLUB }|..|{ EVENT : creates-host
        VENUE ||--o{ EVENT : hosts-relation
        EVENT ||--o{ ATTENDEE-USER : user-relation
Loading

ERD

    erDiagram
        CLUB ||--o{ EVENT : creates
        CLUB {
            int id
            int club_id
            string email
            string encrypted_password
            string name
            string phone
            string address
            string city
            string state
            int    zip
            string website
        }
        VENUE ||--o{ EVENT : hosts
        VENUE {
            int id
            int venue_id
            string name
            string phone
            string email
            string address
            string city
            string state
            int    zip
            string website
            string description
        }
        EVENT ||--o{ ATTENDEE : includes
        EVENT {
            int id
            int club_id
            int venue_id
            string title
            string event_date
            string description
            string cost
            datetime created_at
            datetime completed_at
        }
        ATTENDEE {
            int id
            int event_id
            string email
            string encrypted_password
            string first_name
            string last_name
            string date_of_birth
            string phone
            string address
            string city
            string state
            int    zip
            string club
            datetime created_at
        }
Loading

About

Event app that allows clubs and organizations to create and share events while allowing members and guests to find and join events.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published