prorm API Reference
    Preparing search index...

    Interface DatabaseForeignKeyInfo

    Foreign key information from database

    interface DatabaseForeignKeyInfo {
        name: string;
        fields: string[];
        references: { table: string; fields: string[] };
        onDelete?: string;
        onUpdate?: string;
    }
    Index
    name: string
    fields: string[]
    references: { table: string; fields: string[] }
    onDelete?: string
    onUpdate?: string