You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
406 B
36 lines
406 B
11 months ago
|
'Created with https://www.planttext.com/
|
||
|
|
||
|
@startuml
|
||
|
|
||
|
skin rose
|
||
|
|
||
|
title Bird database
|
||
|
|
||
|
class Species {
|
||
|
SpeciesID
|
||
|
Name
|
||
|
}
|
||
|
|
||
|
class Regions {
|
||
|
RegionID
|
||
|
Name
|
||
|
}
|
||
|
|
||
|
class Sightings {
|
||
|
SightingID
|
||
|
Latitude
|
||
|
Longitude
|
||
|
Date
|
||
|
}
|
||
|
|
||
|
class Spotters {
|
||
|
SpotterID
|
||
|
Name
|
||
|
}
|
||
|
|
||
|
Regions -right- Species: "0..* 0..*"
|
||
|
Species -right- Sightings: "1 0..*"
|
||
|
Sightings -right- Spotters: "0..* 0..1"
|
||
|
|
||
|
@enduml
|