Re: Problems Adding Django South Tool

2014-01-26 Thread Brandon Foster
(note: I can type *./manage.py* instead of *python* *manage.py* because I changed the mode for the *manage.py* file by doing *chmod +x manage.py* to make it executable. Also, I didn't type the dollar sign $, that only indicates the command prompt) For me, I realized I had typed the following

Re: Problems Adding Django South Tool

2013-04-23 Thread Ashley Snelgrove
I'm guessing that southtut also needed to be added to the list of INSTALLED_APPS. On Thursday, August 23, 2012 8:57:58 AM UTC-6, Fyodor Wolf wrote: > > What was your Solution??? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe

Re: Problems Adding Django South Tool

2012-08-23 Thread Fyodor Wolf
What was your Solution??? -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/kW9P46ybVnYJ. To post to this group, send email to django-users@googlegroups.com.

Re: Problems Adding Django South Tool

2011-02-17 Thread hank23
Thanks for the help. I found the problem and now I have my migration file(s) and I'm ready to migrate. On Feb 17, 12:07 pm, Shawn Milochik wrote: > On Thu, Feb 17, 2011 at 11:26 AM, hank23 wrote: > > Ok I added the southtut app to my installed apps

Re: Problems Adding Django South Tool

2011-02-17 Thread Shawn Milochik
On Thu, Feb 17, 2011 at 11:26 AM, hank23 wrote: > Ok I added the southtut app to my installed apps after creating its > folder, but now when I enter this command: > > python manage.py schemamigration southtut --initial > > I get this: > > Unknown command: 'schemamigration'

Re: Problems Adding Django South Tool

2011-02-17 Thread hank23
Ok I added the southtut app to my installed apps after creating its folder, but now when I enter this command: python manage.py schemamigration southtut --initial I get this: Unknown command: 'schemamigration' Which makes me wonder if I really do have South completely installed ok, or if I

Re: Problems Adding Django South Tool

2011-02-17 Thread Michael
After you create the southtut app, you need to add it to settings.INSTALLED_APPS in order for Django to know about it. If Django doesn't know about it, then South doesn't know about it. -- Michael On Thu, 2011-02-17 at 07:20 -0800, hank23 wrote: > I downloaded and

Problems Adding Django South Tool

2011-02-17 Thread hank23
I downloaded and installed Django's South DB tool apparently ok because after installing it I went into the shell and was able to import South ok with no errors. So then I added it to the end of the list of installed apps and also ran syncdb. When I ran syncdb I didn't get anything that looked