Add verified field to Establishments
This commit is contained in:
parent
f67b10f558
commit
51c020eac3
1 changed files with 1 additions and 0 deletions
|
@ -17,6 +17,7 @@ class Establishment(models.Model):
|
|||
state = models.CharField(max_length=64)
|
||||
country = CountryField()
|
||||
coords = models.PointField()
|
||||
verified = models.BooleanField(default=False)
|
||||
|
||||
class RoomCategory(models.Model):
|
||||
establishment = models.ForeignKey(Establishment, models.CASCADE)
|
||||
|
|
Loading…
Reference in a new issue