Hi,

i use postgres and want to use partitioning for tables (see
http://www.postgresql.org/docs/8.3/interactive/ddl-partitioning.html )

My Model looks like this:

class Measurand(models.Model):
    project = models.ForeignKey(Project)
    avg_value = models.DecimalField(max_digits=10, decimal_places=4,
db_index=True)


I never want to query over all measurands. I just want to query over
all measurands from _one_ project like this: project.measurand_set.all
()

So the best solution i think is to have one table for every project.
Is this possible with django and the new multidb-api?


cheers,

tom
-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.


Reply via email to