Skip to content

Commit

Permalink
Add New incident type (hauled-out) to the marine mammal incident data…
Browse files Browse the repository at this point in the history
…base
  • Loading branch information
RickWangPerth authored Sep 16, 2024
1 parent 172fb4a commit c358059
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion marine_mammal_incidents/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ class Incident(models.Model):
(ENTANGLEMENT, 'Entanglement'),
(ENTRAPMENT, 'Entrapment'),
(VESSEL_COLLISION, 'Vessel collision'),
(UNUSUAL_MORTALITY_EVENT, 'Unusual mortality event')
(UNUSUAL_MORTALITY_EVENT, 'Unusual mortality event'),
(HAULED_OUT, 'hauled-out (for pinnipeds)')

]
incident_type = models.CharField(max_length=50,choices=INCIDENT_TYPE_CHOICES)

Expand Down

0 comments on commit c358059

Please sign in to comment.