Last active
May 7, 2022 03:04
-
-
Save altela/bae81390fe9cce773853b1e51ad875a7 to your computer and use it in GitHub Desktop.
Check Odoo Version from SQL
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
/* 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