Created
September 16, 2016 09:23
-
-
Save simahawk/5f155e2721e6c721b0edead682bd3387 to your computer and use it in GitHub Desktop.
odoo - reset installed module version
This file contains hidden or 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
| mydb=# select id, name, latest_version, published_version from ir_module_module where name = 'mymodule'; | |
| id | name | latest_version | published_version | |
| -----+-------------+----------------+------------------- | |
| 310 | mymodule | 9.0.2.0.1 | | |
| (1 row) | |
| mydb=# update ir_module_module set latest_version='9.0.1.0.1' where id = 310; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment