Member Junction
    Preparing search index...

    A foreign key relationship definition.

    interface ForeignKeyDefinition {
        ColumnName: string;
        IsSoft: boolean;
        ReferencedColumn: string;
        ReferencedSchema: string;
        ReferencedTable: string;
    }
    Index

    Properties

    ColumnName: string

    Column in this table that holds the FK value.

    IsSoft: boolean

    Whether this is a soft FK (metadata-only, no DB constraint) or a hard FK (real REFERENCES constraint).

    ReferencedColumn: string

    Referenced column name (typically "ID").

    ReferencedSchema: string

    Referenced schema.

    ReferencedTable: string

    Referenced table name.