> On Aug 24, 2016, at 8:48 AM, Rich Shepard <[email protected]> wrote: > > While I think that I understand the differences between a project and its > apps there remains one point of uncertainty. I've not found the answer, > although it might be in the 1.10 docs or on the Web and I've missed it. > > If the project represents the entire database, do the apps represent > individual tables? That is, should my project have a separate app for each > table with its models, templates, and views with templates of joined tables > in the main project subdirectory? Or are all tables in a single app?
My tuppence.. No, an app is a logical grouping of objects/tables. You might, for instance,have an Invoice app that would include an Invoice table (model) and a LineItems table. Products and related tables would be in a different app. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/A2166400-C5B5-4CCB-ABC2-0A5E1D92F6DF%40gmail.com. For more options, visit https://groups.google.com/d/optout.

