We have two database apps, in two different directories. Django sees these both as database_<appname>. I thought this was ok except we obviously have issues w/ permissions and content types, which we'll be changing, except tonight I came across the fun error that it's showing data from the wrong tables.
I have bits like: class Meta: db_table = "vg_database_item" On every table in the second subdirectory, as the first one all were created as "database_item", instead of "wow_database_item" as they're in djangodir/wow/database/models.py and djangodir/vg/database/models.py These are both used with different settings files. wow/database isnt installed on the same site that uses vg/database. My admin is showing some tables from the wow/database, and some from vg/database. Any that are from vg/database and in wow/database seem to be showing as the wow/database in the administration. I couldn't find anywhere where it is importing this, so I don't think it is. Are there any known conflict issues? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---