Skip to content
Snippets Groups Projects
Commit dfaea03d authored by Denis Ledoux's avatar Denis Ledoux
Browse files

[FIX] fields: do not attempt to set foreign keys on views


Users sometimes define custom models on SQL views
e.g. @nseinlet
In such a case, Odoo should not attempt to create foreign keys
as it just cannot work on views.

This could prevent the migration of a database
with such a custom model using a view
when it attempted to fix the missing foreign keys
when updating the modules.

closes odoo/odoo#38951

Signed-off-by: default avatarChristophe Simonis <chs@odoo.com>
parent a41aa063
No related branches found
No related tags found
No related merge requests found
......@@ -1962,6 +1962,9 @@ class Many2one(_Relational):
def update_db_foreign_key(self, model, column):
comodel = model.env[self.comodel_name]
# foreign keys do not work on views, and users can define custom models on sql views.
if not model._is_an_ordinary_table() or not comodel._is_an_ordinary_table():
return
# ir_actions is inherited, so foreign key doesn't work on it
if not comodel._auto or comodel._table == 'ir_actions':
return
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment