prorm API Reference
    Preparing search index...

    Interface InheritOptions

    Table inheritance options for PostgreSQL

    interface InheritOptions {
        parentTable: string | string[];
        only?: boolean;
        inherit?: boolean;
    }
    Index
    parentTable: string | string[]

    Parent table(s) to inherit from

    only?: boolean

    Only include rows from child table in queries

    inherit?: boolean

    Include rows from parent table in queries (default)