On 11/7/06, Martin Bačovský <[EMAIL PROTECTED]> wrote: > E.g. polls.poll instead of polls_poll. At first it doesn't look like a big > deal, but it is more natural. > When you have big db model and need to access db from other sources then > Django it can do things easier.
I just created a test model and set the db_table to 'poll.polls', and tables were created without difficulty. What problem did you experience? > I can't imagine all consequences yet. but I think that adding db_schema > attribute to Meta class and something like: > table_name = '%s.%s' % (quote(db_schema),quote(db_table)) # for > postgres > table_name = '%s_%s' % (quote(db_schema),quote(db_table)) # otherwise > would do that. Some food for thought: 1) There is the issue of compatibility with existing deployed projects. This isn't necessarily a show stopper, but a change like this isn't something that would be done on a whim - there would have to be a compelling argument. 2) There is the issue of consistency between database backends. Django is database agnostic, so there shouldn't be any big surprises (such as fundamental changes in database table naming policies) as a result of changing backends. 3) If Django is going to support schema, I would suggest that it should be at more than just a cosmetic level - manage.py should be creating schema on a per app/per project basis. I can't say this particular issue hits any of my particular itches. However, if it is something you are interested in, open a ticket, suggest some patches, and ask for comment on the developers mailing list. Ideas and suggestions are great, but code speaks volumes :-) Yours, Russ Magee %-) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---