> I have an application named "news". Running python manage.py sqlall news
> I just discovered that django would create a table I did not define in
> my models.py - "news_news" (no, there's no M2M fields there). What's
> that? Why? I even don't have a model for this data.

Do you have a Model called "News"?

If you don't provide a table name manually, Django prefixes the name
of any tables it generates with the application's name, which is how
you'd end up with "news_news" if you had a "News" model in a "news"
application.

Jonathan.

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to