Added 30 .base.md files using the mmg (Multilingual Markdown Generator) format to automatically generate English (.md) and French (.fr.md) versions of all project documentation. Updated conf/make.documentation.Makefile to process all .base.md files via `make doc_markdown`.
25 lines
734 B
Markdown
25 lines
734 B
Markdown
<!---------------------------->
|
|
<!-- multilingual suffix: en, fr -->
|
|
<!-- no suffix: en -->
|
|
<!---------------------------->
|
|
|
|
<!-- [en] -->
|
|
# Migration
|
|
|
|
Run this script when doing database migration. Example :
|
|
|
|
<!-- [fr] -->
|
|
# Migration
|
|
|
|
Exécutez ce script lors de la migration de base de données. Exemple :
|
|
|
|
<!-- [common] -->
|
|
```bash
|
|
source ./.venv.odoo15.0_python3.8.20/bin/activate && cat ./script/odoo/migration/fix_migration_odoo140_to_odoo150.py | ./odoo15.0/odoo/odoo-bin shell -d DATABASE
|
|
```
|
|
|
|
<!-- [en] -->
|
|
Check [uninstall_module_list_odoo140_to_odoo150.txt](uninstall_module_list_odoo140_to_odoo150.txt)
|
|
|
|
<!-- [fr] -->
|
|
Consultez [uninstall_module_list_odoo140_to_odoo150.txt](uninstall_module_list_odoo140_to_odoo150.txt)
|