Libraries
    Preparing search index...

    Interface DatabaseForeignKeyInfo

    Foreign key information read from the database.

    interface DatabaseForeignKeyInfo {
        columnName: string;
        constraintName: string;
        deleteRule: string;
        foreignColumn: string;
        foreignTable: string;
        updateRule: string;
    }
    Index

    Properties

    columnName: string
    constraintName: string
    deleteRule: string
    foreignColumn: string
    foreignTable: string
    updateRule: string