Member Junction
    Preparing search index...

    Database configuration for the migration runner.

    interface SkywayDatabaseConfig {
        Database: string;
        Encrypt?: boolean;
        Host: string;
        Password: string;
        Port: number;
        RequestTimeout?: number;
        TrustedConnection?: boolean;
        TrustServerCertificate?: boolean;
        User: string;
    }
    Index

    Properties

    Database: string

    Database name

    Encrypt?: boolean

    Whether to encrypt the connection (required for Azure SQL, auto-detected if omitted)

    Host: string

    Database host

    Password: string

    Database password

    Port: number

    Database port

    RequestTimeout?: number

    Request timeout in milliseconds

    TrustedConnection?: boolean

    Whether to use Windows integrated auth

    TrustServerCertificate?: boolean

    Whether to trust the server certificate (default: true for local, false for Azure SQL)

    User: string

    Database user