As a workaround, if anyone is seeing this problem, you can move past it like this:
rename the satchmo/apps/products/modules/downloadable/migrations folder to something else, like migrations.tmp run ./manage.py syncdb This will create the downloadable tables since it won't think downloadable is being managed by south. put the migrations folder back where it was run ./manage.py migrate downloadable 0001 --fake This will cause south to mark the 0001_split.py migration as run. Now it won't bother you later about it. Hope that helps, Alex On May 26, 10:43 pm, mattym <[email protected]> wrote: > I am starting with a new store. > > I am unable to get clonesatcmo working on my local machine (windows), > so I've been manually copying the 'simple' and 'large' project over to > my django project directory. Sort of a hackey version based on Bruce's > technique on gosatchmo.com.From there making a couple tweaks to > settings and local_settings - to point to postgresql and email config. > And finally running a few manage.py commands: satchmo_load , > satchmo_check, syncdb, loaddata, etc... all in random order :). It > works for simple. Almost for large. > > When I syncdb I am prompted to run migrations after some initial > tables are created. Since 'simple' doesn't have 'downloadable' to > migrate it works. And all other migrations work on 'large.' > > Thanks Chris > ~Matt > > On May 26, 8:28 pm, Chris Moffitt <[email protected]> wrote: > > > Are you starting with a new store? If so, you shouldn't have to run the > > migrations to get it running. > > > Just so you know, I do think there's an issue lurking, I just haven't been > > able to find the time to recreate it yet. > > > -Chris > > > On Wed, May 26, 2010 at 8:46 PM, mattym <[email protected]> wrote: > > > Howdy - > > > > New to satchmo. Love it so far. I am using the latest version. > > > > I have the simple cart running well. > > > One issue with the large cart I am having. I am unable to run > > > migrations for "downloadable." > > > All other migrations work fine. This happens with mysql and > > > postgresql. (the mysql error led me try postgresql) > > > > The last error in the traceback is pyscopg2.ProgrammingError: relation > > > "product_downloadableproduct" does not exist. > > > > Anyone else have this problem with .0.9.1? Any ideas? > > > > Thanks, > > > Matt > > > > -- > > > You received this message because you are subscribed to the Google Groups > > > "Satchmo users" group. > > > To post to this group, send email to [email protected]. > > > To unsubscribe from this group, send email to > > > [email protected]<satchmo-users%[email protected]> > > > . > > > For more options, visit this group at > > >http://groups.google.com/group/satchmo-users?hl=en. -- You received this message because you are subscribed to the Google Groups "Satchmo users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/satchmo-users?hl=en.
