disabled lotPoperty field

This commit is contained in:
Thomas Nahuel Rusiecki 2024-11-16 15:27:21 -03:00
parent db1d38c3d1
commit b77120a4c3
1 changed files with 3 additions and 1 deletions

View File

@ -46,5 +46,7 @@ class Lot(models.Model):
d.delete()
class LotProperty (Property):
#uuid is not needed for id
uuid = None
#lot foreign key is
lot = models.ForeignKey(Lot, on_delete=models.CASCADE)