@watzon/baserow
    Preparing search index...

    Interface PostgreSQLDataSync

    interface PostgreSQLDataSync {
        id: number;
        lastError?: null | string;
        lastSync?: null | string;
        postgresqlDatabase: string;
        postgresqlHost: string;
        postgresqlPort?: number;
        postgresqlSchema?: string;
        postgresqlSslmode?: string;
        postgresqlTable: string;
        postgresqlUsername: string;
        syncedProperties: DataSyncSyncedProperty[];
        type: "postgresql";
    }

    Hierarchy (View Summary)

    Index

    Properties

    id: number
    lastError?: null | string
    lastSync?: null | string
    postgresqlDatabase: string
    postgresqlHost: string
    postgresqlPort?: number
    postgresqlSchema?: string
    postgresqlSslmode?: string
    postgresqlTable: string
    postgresqlUsername: string
    syncedProperties: DataSyncSyncedProperty[]
    type: "postgresql"