Skip to content

Instantly share code, notes, and snippets.

@gurneyalex
Created June 1, 2015 16:52
Show Gist options
  • Save gurneyalex/3cfe2af30bf78c9bdb05 to your computer and use it in GitHub Desktop.
Save gurneyalex/3cfe2af30bf78c9bdb05 to your computer and use it in GitHub Desktop.
installed modules
2947854-7-0-5b1147-base=# select name, author from ir_module_module where state='installed';
name | author
-----------------------------+------------------------------------------------------------------------
web_calendar |
web |
web_m2x_options | Tuxservices,Odoo Community Association (OCA)
auth_signup | OpenERP SA
web_list_html_widget | initOS GmbH & Co. KG,Odoo Community Association (OCA)
web_recipients_uncheck | initOS GmbH & Co. KG,Odoo Community Association (OCA)
web_search_alphabetic | Serpent Consulting Services Pvt. Ltd.,Odoo Community Association (OCA)
web_pytz | Therp BV,Odoo Community Association (OCA)
web_popup_large | Therp BV,Odoo Community Association (OCA)
web_tree_many2one_clickable | Therp BV,Odoo Community Association (OCA)
web_polymorphic_many2one | Elico Corp,Odoo Community Association (OCA)
share | OpenERP SA
base_setup | OpenERP SA
process | OpenERP SA
web_diagram |
web_send_message_popup | Camptocamp,Odoo Community Association (OCA)
web_tests |
base_import | OpenERP SA
web_gantt |
web_graph |
web_kanban |
web_view_editor |
web_relativedelta | Therp BV,Odoo Community Association (OCA)
base | OpenERP SA
web_widget_float_formula | GRAP,Odoo Community Association (OCA)
web_warning_sound | HacBee UAB,Odoo Community Association (OCA)
mail | OpenERP SA
email_template | OpenERP,OpenLabs
fetchmail | OpenERP SA
portal | OpenERP SA
web_nocreatedb | Vauxoo,Odoo Community Association (OCA)
(31 rows)
2947854-7-0-5b1147-base=# select name, author from ir_module_module where state='installed' where author like '%OCA%';
ERROR: syntax error at or near "where"
LINE 1: ...or from ir_module_module where state='installed' where auth...
^
2947854-7-0-5b1147-base=# select name, author from ir_module_module where state='installed' and author like '%OCA%';
name | author
-----------------------------+------------------------------------------------------------------------
web_m2x_options | Tuxservices,Odoo Community Association (OCA)
web_list_html_widget | initOS GmbH & Co. KG,Odoo Community Association (OCA)
web_recipients_uncheck | initOS GmbH & Co. KG,Odoo Community Association (OCA)
web_search_alphabetic | Serpent Consulting Services Pvt. Ltd.,Odoo Community Association (OCA)
web_pytz | Therp BV,Odoo Community Association (OCA)
web_popup_large | Therp BV,Odoo Community Association (OCA)
web_tree_many2one_clickable | Therp BV,Odoo Community Association (OCA)
web_polymorphic_many2one | Elico Corp,Odoo Community Association (OCA)
web_send_message_popup | Camptocamp,Odoo Community Association (OCA)
web_relativedelta | Therp BV,Odoo Community Association (OCA)
web_widget_float_formula | GRAP,Odoo Community Association (OCA)
web_warning_sound | HacBee UAB,Odoo Community Association (OCA)
web_nocreatedb | Vauxoo,Odoo Community Association (OCA)
(13 rows)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment