This feature is provided by the module-data-source plugin.
Only supported when main database is PostgreSQL
In database design, you can create a parent table and derive multiple child tables based on its structure. Child tables inherit the fields from the parent table and can define additional columns to meet specific needs. This inheritance pattern helps organize and manage data with similar structures but with differences.
Main features of inheritance tables:
While inheritance tables can optimize data organization, they may increase query complexity, especially when querying cross-hierarchy data. Therefore, when using them, you need to consider database characteristics and balance performance with maintainability.
