TASK 3:
[Product]
- ProductID (PK)
- Name
- Category
- ManufacturerID (FK)
- Weight
- Flavor
- TargetHealthCondition
- Material
- Durability
- Color
- Size
- CareInstructions
[Animal]
- AnimalID (PK)
- Name
[Manufacturer]
- ManufacturerID (PK)
- Name
[Customer]
- CustomerID (PK)
- Name
- Email
[Transaction]
- TransactionID (PK)
- CustomerID (FK)
- Date
[TransactionProduct]
- TransactionID (PK, FK)
- ProductID (PK, FK)
[Location]
- LocationID (PK)
- Name
- ZipCode
[Shipment]
- ShipmentID (PK)
- OriginLocationID (FK)
- DestinationLocationID (FK)
- Date
[ShipmentProduct]
- ShipmentID (PK, FK)
- ProductID (PK, FK)
- Quantity
[ProductAnimal]
- ProductID (PK, FK)
- AnimalID (PK, FK)
Product -|-----|< ProductAnimal >|-----| Animal
| |
|-----| Manufacturer
|-----|< TransactionProduct >|-----| Transaction
|-----| Customer
Location -|-----|< ShipmentProduct >|-----| Shipment
|-----| Product