SQLQueryHelperjs - v1.2.6
    Preparing search index...

    Interface PostgresReflectorConfig

    interface PostgresReflectorConfig {
        connectionString: string;
        defaultSchema?: string;
        approvedColumnRenames?: ColumnRenameApproval[];
        approvedDestructiveTableChanges?: string[];
        requireDestructiveChangeApproval?: boolean;
        requireChangeTicketForDestructiveChanges?: boolean;
        orchestrateDestructiveDependencies?: boolean;
        changeTicketId?: string;
        environment?: PostgresEnvironment;
        blockDestructiveChangesInProduction?: boolean;
        onSchemaChange?: (event: PostgresSchemaChangeEvent) => void;
        persistSchemaChangeHistory?: boolean;
        schemaChangeHistoryTable?: string;
    }
    Index

    Properties

    connectionString: string
    defaultSchema?: string
    approvedColumnRenames?: ColumnRenameApproval[]
    approvedDestructiveTableChanges?: string[]
    requireDestructiveChangeApproval?: boolean
    requireChangeTicketForDestructiveChanges?: boolean
    orchestrateDestructiveDependencies?: boolean
    changeTicketId?: string
    environment?: PostgresEnvironment
    blockDestructiveChangesInProduction?: boolean
    onSchemaChange?: (event: PostgresSchemaChangeEvent) => void
    persistSchemaChangeHistory?: boolean
    schemaChangeHistoryTable?: string