hi list,

using mysql 5.0 and python 2.4 on winxp pro

i'm calling manage.py sql myproject, and all of the sql scrolls by with
no errors but the tables aren't being created in the db.  i've called
manage.py sql init, and that worked fine.  my project.app is listed in
INSTALLED_APPS

sql looks similar to:
BEGIN;
CREATE TABLE `foo` (
    `id` mediumint(9) unsigned auto_increment NOT NULL PRIMARY KEY,
    `name` varchar(255) NOT NULL
);
COMMIT;

yet the table is not created.
calling manage.py sqlall myproject does the same thing.  
any ideas?


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

Reply via email to