Member Junction
    Preparing search index...
    interface EntityFieldChange {
        entityID: string;
        entityName: string;
        fieldID: string;
        fieldName: string;
        reasons: (
            | "AllowUpdateAPI"
            | "Type"
            | "AllowsNull"
            | "IsPrimaryKey"
            | "Description"
            | "Length"
            | "Precision"
            | "Scale"
            | "DefaultValue"
            | "AutoIncrement"
            | "IsVirtual"
            | "IsComputed"
            | "RelatedEntityID"
            | "RelatedEntityFieldName"
            | "IsUnique"
        )[];
    }
    Index

    Properties

    entityID: string
    entityName: string
    fieldID: string
    fieldName: string
    reasons: (
        | "AllowUpdateAPI"
        | "Type"
        | "AllowsNull"
        | "IsPrimaryKey"
        | "Description"
        | "Length"
        | "Precision"
        | "Scale"
        | "DefaultValue"
        | "AutoIncrement"
        | "IsVirtual"
        | "IsComputed"
        | "RelatedEntityID"
        | "RelatedEntityFieldName"
        | "IsUnique"
    )[]