Interface NormalizedAttributeReferencesOptions

interface NormalizedAttributeReferencesOptions {
    deferrable?: Deferrable;
    key?: string;
    table: TableName;
}

Hierarchy

Properties

deferrable?: Deferrable

When to check for the foreign key constraint

PostgreSQL only

key?: string

The column on the target model that this foreign key references

table: TableName

The name of the table to reference (the sql name).