Options

data class Options(val autoInstall: Boolean = false, val verifyInstallation: Boolean = true, val installFromFiles: Boolean = false, val installFilesPath: String = "./pgmq")(source)

A data class that represents configuration options for an installation process.

You can download the migration files from here: https://github.com/pgmq/pgmq/tree/main/pgmq-extension/sql

Constructors

Link copied to clipboard
constructor(autoInstall: Boolean = false, verifyInstallation: Boolean = true, installFromFiles: Boolean = false, installFilesPath: String = "./pgmq")

Properties

Link copied to clipboard

Determines whether the installation process should proceed automatically.

Link copied to clipboard

Path to the directory containing SQL migration files for installation.

Link copied to clipboard

Indicates whether the installation should be performed from SQL files.

Link copied to clipboard

Indicates whether the installation should be verified post-process.