> In the past I always worked with flatfiles so every user had their own > folder on the filesystem and all of their data was within that folder. > Does this mean that every user should have their own table to hold > their blog posts or I should have one blog_post table and throw > everyone's posts into that table?
A table for every user would only be advisible if the group of users stays the same over a very long time. Adding and removing tables belongs to the things which you normally only do once. For a multi user blog you'd rather put the blog posts into one table and the users in another table. The blog posts would be connected to the users via a foreign key. Arthur --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---

