Interface PostgreSQLConnectionSettings

interface PostgreSQLConnectionSettings {
    connection_retry_count?: number;
    database: string;
    host?: string;
    implicit_apply_schemas?: boolean;
    is_default?: boolean;
    logger?:
        | "console"
        | "color-console"
        | "empty"
        | Logger;
    password?: string | Promise<string>;
    port?: number;
    redis_cache?: RedisCacheSettings;
    user?: string | Promise<string>;
}

Hierarchy

  • ConnectionSettings
  • AdapterSettingsPostgreSQL
    • PostgreSQLConnectionSettings

Properties

connection_retry_count?: number
database: string
host?: string
implicit_apply_schemas?: boolean
is_default?: boolean
logger?:
    | "console"
    | "color-console"
    | "empty"
    | Logger
password?: string | Promise<string>
port?: number
redis_cache?: RedisCacheSettings
user?: string | Promise<string>