Libraries
    Preparing search index...

    Interface PrimaryKeyColumns

    Result of getPrimaryKeyColumns.

    propertyKeys are the schema property names (the keys you'd use in .where(t => t.id, ...) style accessors); columnNames are the SQL column names after applying any hasColumnName() overrides. Order is preserved: composite-PK ordering matches the user's hasPrimaryKey() declaration; single-PK arrays have length 1.

    interface PrimaryKeyColumns {
        columnNames: readonly string[];
        propertyKeys: readonly string[];
    }
    Index

    Properties

    columnNames: readonly string[]
    propertyKeys: readonly string[]