← Back to team overview

credativ team mailing list archive

[Bug 983731] Re: CRM module is not yet covered

 

Hi Christophe,

the CRM module is now covered for migrations from 6.0 to 6.1. That
should fix the references to the stage type.

Had a look at your other issue with the sequence. Turns out this is an
oversight in the OpenUpgrade architecture. When renaming ORM tables, the
sequences that OpenERP uses to provide the resource id need to be
renamed as well. This will be fixed ASAP.

Cheers,
Stefan.



** Changed in: openupgrade-addons
       Status: Fix Committed => In Progress

** Changed in: openupgrade-addons
   Importance: Wishlist => High

-- 
You received this bug notification because you are a member of
OpenUpgrade Committers, which is the registrant for OpenUpgrade Addons.
https://bugs.launchpad.net/bugs/983731

Title:
  CRM module is not yet covered

Status in OpenUpgrade Addons:
  In Progress

Bug description:
  Hi

  after an upgrade we got the following issues on the crm :

  - the mail_message_id_seq sequence was missing
  - a domain using removed attribute "type" of crm_case_stage was still there
  - the corresponding "type" column was still there although the attribute did not exist

  I had to :

  CREATE SEQUENCE mail_message_id_seq MINVALUE 0;
  SELECT setval('mail_message_id_seq', (SELECT MAX(id) FROM mail_message)+1);
  alter table crm_case_stage drop column type;

  and I had to manually remove the domain and context in the "Stages"
  window_action

To manage notifications about this bug go to:
https://bugs.launchpad.net/openupgrade-addons/+bug/983731/+subscriptions


References