Say I have a property and it can be for sale and/or for rent (each with their associated price), how should I structure my models?
A:
class Property(models.Model):
name = models.CharField()
sale_price = models.DecimalField(max_digits=14, decimal_places=2)
rent_price = models.DecimalField(max_digits=14, decimal_places=2)
B:
class Property(models.Model):
name = models.CharField()
CATEGORY_CHOICES = (
(u'sale', u'Sale'),
(u'rent', u'Rent'),
)
class Category(models.Model):
property = models.ForeignKey('Property')
name = models.CharField(max_length=25, choices=CATEGORY_CHOICES)
price = models.DecimalField(max_digits=14, decimal_places=2)
C:
class Property(models.Model):
name = models.CharField()
class Sale(models.Model):
property = models.ForeignKey('Property')
price = models.DecimalField(max_digits=14, decimal_places=2)
class Rent(models.Model):
property = models.ForeignKey('Property')
price = models.DecimalField(max_digits=14, decimal_places=2)
I think C would give me more flexibility if I'd like to add sale/rent specific fields. Structure B seems that it would be better for querying but I'm not sure.
Supposing I went with C, how would query a property that is on sale for example?