Member Junction
    Preparing search index...

    Outcome for a single table within a DatabaseDesignerResult batch. Maps 1-to-1 with SchemaDesignEntry and PipelineExecutionResult.

    interface DatabasePipelineResult {
        EntityID?: string;
        EntityName?: string;
        ErrorMessage?: string;
        PipelineSteps?: PipelineStepSummary[];
        SchemaName?: string;
        Success: boolean;
        TableName?: string;
    }
    Index

    Properties

    EntityID?: string

    Populated on success — the new entity's ID in MJ: Entities.

    EntityName?: string

    Populated on success — the MJ entity name (e.g. "Meetup Attendees").

    ErrorMessage?: string

    Populated on failure.

    PipelineSteps?: PipelineStepSummary[]

    Step-by-step pipeline trace from RuntimeSchemaManager.

    SchemaName?: string

    SQL schema name (e.g. "__mj_UDT").

    Success: boolean
    TableName?: string

    Physical table name (e.g. "MeetupAttendees").