forked from OCA/OpenUpgrade
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[INIT] 18.0: Initialize apriori.py file.
- Loading branch information
1 parent
cf9e7a4
commit 58dcc41
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/... | ||
} | ||
|