Skip to content

Instantly share code, notes, and snippets.

@simahawk
Created September 16, 2016 09:23
Show Gist options
  • Select an option

  • Save simahawk/5f155e2721e6c721b0edead682bd3387 to your computer and use it in GitHub Desktop.

Select an option

Save simahawk/5f155e2721e6c721b0edead682bd3387 to your computer and use it in GitHub Desktop.
odoo - reset installed module version
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