0% found this document useful (0 votes)
5 views4 pages

Events

Uploaded by

oindrilamimi100
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views4 pages

Events

Uploaded by

oindrilamimi100
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
You are on page 1/ 4

Entity Field Name Data Type

CharitableOrganization organization_id INT, Primary Key, Auto Increment


name VARCHAR(255)
mission TEXT
contact_info VARCHAR(255)

Event event_id INT, Primary Key, Auto Increment


name VARCHAR(255)
description TEXT
date DATE
location VARCHAR(255)
organization_id INT, Foreign Key

EventCommittee committee_id INT, Primary Key, Auto Increment


event_id INT, Foreign Key
role VARCHAR(255)
member_name VARCHAR(255)
contact_info VARCHAR(255)

EventSponsor sponsor_id INT, Primary Key, Auto Increment


event_id INT, Foreign Key
sponsor_name VARCHAR(255)
sponsor_type ENUM('financial', 'in-kind')
contribution VARCHAR(255)

Donor donor_id INT, Primary Key, Auto Increment


event_id INT, Foreign Key
donor_name VARCHAR(255)
contribution_amount DECIMAL
contact_info VARCHAR(255)

Volunteer volunteer_id INT, Primary Key, Auto Increment


event_id INT, Foreign Key
volunteer_name VARCHAR(255)
role VARCHAR(255)
contact_info VARCHAR(255)

Attendee attendee_id INT, Primary Key, Auto Increment


event_id INT, Foreign Key
attendee_name VARCHAR(255)
ticket_type VARCHAR(255)
contact_info VARCHAR(255)

Beneficiary beneficiary_id INT, Primary Key, Auto Increment


name VARCHAR(255)
description TEXT
contact_info VARCHAR(255)
Description
Unique identifier for the charitable organization
Name of the charitable organization
Mission statement of the organization
Contact information for the organization

Unique identifier for the event


Name of the event
Description of the event
Date of the event
Location of the event
References CharitableOrganization(organization_id)

Unique identifier for the committee member


References Event(event_id)
Role of the committee member
Name of the committee member
Contact information for the committee member

Unique identifier for the sponsor


References Event(event_id)
Name of the sponsor
Type of sponsorship (financial or in-kind)
Description of the sponsor's contribution

Unique identifier for the donor


References Event(event_id)
Name of the donor
Amount of the donation
Contact information for the donor

Unique identifier for the volunteer


References Event(event_id)
Name of the volunteer
Role of the volunteer
Contact information for the volunteer

Unique identifier for the attendee


References Event(event_id)
Name of the attendee
Type of ticket purchased by the attendee
Contact information for the attendee

Unique identifier for the beneficiary


Name of the beneficiary
Description of the beneficiary
Contact information for the beneficiary

You might also like