interface RawConstraintDescription {
    columnNames?: string;
    constraintCatalog?: string;
    constraintName: string;
    constraintSchema: string;
    constraintType: ConstraintType;
    definition?: string;
    deleteAction?: string;
    initiallyDeferred?: string;
    isDeferrable?: string;
    referencedColumnNames?: string;
    referencedTableName?: string;
    referencedTableSchema?: string;
    tableCatalog?: string;
    tableName: string;
    tableSchema: string;
    updateAction?: string;
}

Properties

columnNames?: string
constraintCatalog?: string
constraintName: string
constraintSchema: string
constraintType: ConstraintType
definition?: string
deleteAction?: string
initiallyDeferred?: string
isDeferrable?: string
referencedColumnNames?: string
referencedTableName?: string
referencedTableSchema?: string
tableCatalog?: string
tableName: string
tableSchema: string
updateAction?: string