跳至內容
選單
此問題已被標幟
3088 瀏覽次數

Hi, all

While creating my first module for odoo 10.0, I initially specified the _inherits attribute for some new model classes. I subsequently found that I don't need it for my purposes. However, despite upgrading the module, removing the _inherits attribute and, later, even specifying 

_inherits = {}

the inherited model fields still appears in my new model.

How can I remove the link between my model field and the inherited model?

頭像
捨棄
作者

The simplest way I can see to do this is to run the following query in in the database:

delete from ir_model_fields where model = 'model.name' and relation is not null and relation_field is null and relation_table is null and related is not null

Is this viable?

相關帖文 回覆 瀏覽次數 活動
1
2月 23
2526
4
2月 25
2382
1
8月 24
2000
2
11月 24
3189
1
8月 24
1873