The reason I knew about this is because I hit something similar. Here is a long discussion on a bug I reported to Bitbucket.
https://bitbucket.org/chris1610/satchmo/issue/1256/cant-sync-with-postgresql On Wed, Feb 20, 2013 at 12:58 PM, Darren Hollenbeck <[email protected]>wrote: > It is PostgreSQL. > > Can't test SQLite at the moment but is there a way to get the desired > result in PostgreSQL? > > > On Wednesday, February 20, 2013 12:30:03 PM UTC-6, Mike Hostetler wrote: > >> What database are you using? >> >> If PostgreSQL, I bet there is a problem with transactions, so the table >> South is trying to change hasn't commited yet, and another transaction has >> started. >> >> Does this work in SQLite? >> >> >> On Wed, Feb 20, 2013 at 11:55 AM, Darren Hollenbeck >> <[email protected]>wrote: >> >>> Doing a new install of Satchmo with South in INSTALLED_APPS from the >>> start, I did: >>> >>> manage.py syncdb >>> manage.py migrate >>> >>> got me: >>> > custom:0001_split >>> FATAL ERROR - The following SQL query failed: ALTER TABLE >>> "product_customproduct_id_seq" RENAME TO "custom_customproduct_id_seq"; >>> The error was: relation "product_customproduct_id_seq" does not exist >>> >>> > configurable:0001_split >>> FATAL ERROR - The following SQL query failed: ALTER TABLE >>> "product_configurableproduct_**id_seq" RENAME TO "configurable_** >>> configurableproduct_id_seq"; >>> The error was: relation "product_configurableproduct_**id_seq" does not >>> exist >>> >>> FATAL ERROR - The following SQL query failed: ALTER TABLE >>> "product_productvariation_id_**seq" RENAME TO "configurable_** >>> productvariation_id_seq"; >>> The error was: relation "product_productvariation_id_**seq" does not >>> exist >>> >>> >>> I dropped the db (to start over) and did: >>> manage.py syncdb --all >>> manage.py migrate --all --fake >>> >>> Error free. >>> >>> I don't see "product_customproduct_id_seq" nor >>> "custom_customproduct_id_seq" in the database, though (or the other ones >>> that had errors related). Everything *seems* to be ok, but it makes me >>> nervous. >>> >>> What's up with this situation? >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Satchmo users" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to satchmo-user...@**googlegroups.com. >>> To post to this group, send email to [email protected]**. >>> >>> Visit this group at >>> http://groups.google.com/**group/satchmo-users?hl=en<http://groups.google.com/group/satchmo-users?hl=en> >>> . >>> For more options, visit >>> https://groups.google.com/**groups/opt_out<https://groups.google.com/groups/opt_out> >>> . >>> >>> >>> >> >> >> >> -- >> Mike Hostetler >> SquarePeg Systems >> http://www.squarepegsystems.**com <http://www.squarepegsystems.com> >> > -- > You received this message because you are subscribed to the Google Groups > "Satchmo users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/satchmo-users?hl=en. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- Mike Hostetler SquarePeg Systems http://www.squarepegsystems.com -- You received this message because you are subscribed to the Google Groups "Satchmo users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/satchmo-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
