Skip to content

Instantly share code, notes, and snippets.

@altela
Last active May 7, 2022 03:04
Show Gist options
  • Save altela/bae81390fe9cce773853b1e51ad875a7 to your computer and use it in GitHub Desktop.
Save altela/bae81390fe9cce773853b1e51ad875a7 to your computer and use it in GitHub Desktop.
Check Odoo Version from SQL
/* Check odoo version from sql : */
SELECT latest_version FROM ir_module_module WHERE name = 'base';
/* Check module license wheter it's Community or Enterprise ver " */
SELECT license, count(*) FROM ir_module_module where state = 'installed' group by license;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment