You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
794 B
16 lines
794 B
The main method provided by this module is ``upgrade_changed_checksum``
|
|
on ``ir.module.module``. It runs a database upgrade for all installed
|
|
modules for which the hash has changed since the last successful
|
|
run of this method. On success it saves the hashes in the database.
|
|
|
|
The first time this method is invoked after installing the module, it
|
|
runs an upgrade of all modules, because it has not saved the hashes yet.
|
|
This is by design, priviledging safety. Should this be an issue,
|
|
the method ``_save_installed_checksums`` can be invoked in a situation
|
|
where one is sure all modules on disk are installed and up-to-date in the
|
|
database.
|
|
|
|
An easy way to invoke this upgrade mechanism is by issuing the following
|
|
in an Odoo shell session::
|
|
|
|
env['ir.module.module'].upgrade_changed_checksum()
|