prorm API Reference
    Preparing search index...

    Interface CreatePartitionOptions

    Options for creating a partition

    interface CreatePartitionOptions {
        parentTable: string;
        name: string;
        bound?: PartitionBound | PartitionListBound | PartitionHashBound;
        tablespace?: string;
        storageParameters?: Record<string, string | number>;
        including?: boolean;
    }
    Index
    parentTable: string

    Parent table name

    name: string

    Partition name

    Partition bound

    tablespace?: string

    Tablespace

    storageParameters?: Record<string, string | number>

    Storage parameters

    including?: boolean

    Include partition in queries (default: true)