@earth-app/collegedb
    Preparing search index...

    Type Alias IntegrationOptions

    Configuration options for integrating an existing database with CollegeDB. Allows customization of which tables to process, primary key column, sharding strategy, and whether to add the shard_mappings table.

    type IntegrationOptions = {
        addShardMappingsTable?: boolean;
        dryRun?: boolean;
        primaryKeyColumn?: string;
        strategy?: ShardingStrategy;
        tables?: string[];
    }
    Index

    Properties

    addShardMappingsTable?: boolean
    dryRun?: boolean
    primaryKeyColumn?: string
    strategy?: ShardingStrategy
    tables?: string[]