Skip to content

Commit

Permalink
[INIT] 18.0: Initialize apriori.py file.
Browse files Browse the repository at this point in the history
  • Loading branch information
legalsylvain committed Sep 30, 2024
1 parent cf9e7a4 commit 58dcc41
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions openupgrade_scripts/apriori.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
""" Encode any known changes to the database here
to help the matching process
"""

# Renamed modules is a mapping from old module name to new module name
renamed_modules = {
# odoo
# odoo/enterprise
# OCA/...
}

# Merged modules contain a mapping from old module names to other,
# preexisting module names
merged_modules = {
# odoo
# odoo/enterprise
# OCA/...
}

# only used here for upgrade_analysis
renamed_models = {
# odoo
# OCA/...
}

# only used here for upgrade_analysis
merged_models = {
# odoo
# OCA/...
}

0 comments on commit 58dcc41

Please sign in to comment.