sorted imports
This commit is contained in:
parent
c108965792
commit
51e824f879
6 changed files with 21 additions and 11 deletions
|
@ -12,8 +12,9 @@ class FallenBird(models.Model):
|
|||
created = models.DateTimeField(auto_now_add=True)
|
||||
updated = models.DateTimeField(auto_now=True)
|
||||
rescuer = models.ForeignKey(Rescuer, on_delete=models.CASCADE)
|
||||
|
||||
user = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE)
|
||||
user = models.ForeignKey(
|
||||
settings.AUTH_USER_MODEL,
|
||||
on_delete=models.CASCADE)
|
||||
|
||||
def __str__(self):
|
||||
return self.place
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue