Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
CarolineDenis committed Sep 19, 2024
1 parent b23a650 commit 0af753d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion specifyweb/specify/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -7885,7 +7885,7 @@ class TectonicUnit(models.Model):
# Relationships: Many-to-One
acceptedtectonicunit = models.ForeignKey('TectonicUnit', db_column='AcceptedID', related_name='acceptedchildren', null=True, on_delete=protect_with_blockers)
tectonictreedefitem = models.ForeignKey('TectonicTreeDefItem', db_column='TectonicTreeDefItemID', related_name='tectonics', null=False, on_delete=protect_with_blockers)
parent = models.ForeignKey('Tectonic', db_column='ParentID', related_name='children', null=True, on_delete=protect_with_blockers)
parent = models.ForeignKey('TectonicUnit', db_column='ParentID', related_name='children', null=True, on_delete=protect_with_blockers)
tectonictreedef = models.ForeignKey('TectonicTreeDef', db_column='TectonicTreeDefID', related_name='tectonics', null=False, on_delete=protect_with_blockers)
createdbyagent = models.ForeignKey('Agent', db_column='CreatedByAgentID', related_name='+', null=True, on_delete=protect_with_blockers)
modifiedbyagent = models.ForeignKey('Agent', db_column='ModifiedByAgentID', related_name='+', null=True, on_delete=protect_with_blockers)
Expand Down

0 comments on commit 0af753d

Please sign in to comment.