You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The regex for matching m2m table names was not strict
in the start and end of the name, it could still match
tables with suffix _1 for example.
The other issue with the regex is not considering manual
names that start with 'x_', the 'x_' prefix was taken
as part of the name of the other table instead of keeping
it in the beginning of the name.
This fix adds a matching group for the 'x_' prefix and
ensures the start and end of the regex are strict.
It also renames the manual m2m relation in ir_model_fields
table, matching the rename done for column names.
closes#335
Signed-off-by: Christophe Simonis (chs) <chs@odoo.com>
0 commit comments