WIP: rework/properties #31

Draft
rskthomas wants to merge 19 commits from rework/properties into main
1 changed files with 3 additions and 1 deletions
Showing only changes of commit b7d7b9041d - Show all commits

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)