跳至內容
選單
此問題已被標幟
1 回覆
875 瀏覽次數

I added a new model 'some.model' in branch A, then I switched to branch B.

When I try to upgrade the module I get this error.

It seems like 'some.model' is still referenced somewhere.

How can I avoid this problem?

Thank you

頭像
捨棄
最佳答案

Option 1 (Quick fix): Run SQL to remove the missing model references:
DELETE FROM ir_model WHERE model = 'some.model';

DELETE FROM ir_model_fields WHERE model = 'some.model';

DELETE FROM ir_act_window WHERE res_model = 'some.model';

DELETE FROM ir_ui_view WHERE model = 'some.model';

Option 2 (Best practice): Use a separate database for each branch to avoid model conflicts.

Option 3: Switch back to branch A, uninstall the module, then switch to branch B.

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
0
5月 25
729
2
5月 25
1414
1
5月 25
751
0
3月 25
888
0
1月 25
792