diff --git a/booking/models.py b/booking/models.py index 61f3d30..5618c8a 100644 --- a/booking/models.py +++ b/booking/models.py @@ -7,3 +7,11 @@ class Species(models.Model): def __str__(self): return self.name + +class Location(models.Model): + """Model to hold the possible locations of the Ducks""" + + name = models.CharField(max_length = 50) + + def __str__(self): + return self.name