I need to know for each module of OpenERP 7 what are its tables assiciated in PostgreSQL.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project management
- MRP
This question has been flagged
PostgreSQL tables are not related to modules. They are related to OpenERP models, like sale.order
or stock.move
. Every module can have zero-to-many models.
The table names are generated by using the model names and replacing all .
by _
.
For example the table name of sale.order
is sale_order
.
It is not possible to assign each database table to a specific module because many tables are used by different modules and there are about 600 tables.
We use http://schemaspy.sourceforge.net/ to help visualize the tables in the database, understand their dependencies and suggest which tables should be populated before others - accounting information before products and partners for example.
ORM manages the persistence of data inside PostgreSQL. As others are posting, which tables are used depends a lot on python code in many different places.
Another method we use to understand the tables involved is to set the server to log the SQL requests.
A bit late, but for future reference since I ran into the same question.
psql -l
You can see all the tables in postgres by connecting to your database and listing the tables.
sudo su - postgres
psql -d yourdatabase
now type this command to list all the tables in a DB
/dt
If you look in the python file for the associated module, it will list the models for that module. The models translate into tables in postgres. The model name will be changed from model.name to model_name
A module is not required to have tables, so there might be no tables for some modules.
how to get the database name?
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up
Ok, Thank you Sir.
select table_name, table_type, table_catalog from information_schema.tables where table_schema = 'public'