This link has some posgresql in there to upgrade the db. However the columns updated to "site" should be "site_id". This is causing errors when upgrading.
ISSUES: alter table shop_order add column site integer not null default 1; FIXED: alter table shop_order add column site_id integer not null default 1; Also there are issues with the following as well: ISSUES: alter table product_option rename column optionGroup_id to option_group_id; FIXED: alter table product_option rename column "optionGroup_id" to "option_group_id"; Thank You, Mark --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
