sqitch-check(3pm) | User Contributed Perl Documentation | sqitch-check(3pm) |
sqitch-check - Checks for divergences between planned and deployed changes.
sqitch check [options] [<database>]
Compares the state of the working directory and the database by comparing the SHA1 hashes of the deploy scripts. Fails and reports divergence for all changes with non-matching hashes, indicating that the project deploy scripts differ from the scripts that were used to deploy to the database.
The "<database>" parameter specifies the database to which to connect, and may also be specified as the "--target" option. It can be target name, a URI, an engine name, or plan file path.
sqitch check --registry registry
The name of the Sqitch registry schema or database in which sqitch stores its own data.
sqitch check --client /usr/local/pgsql/bin/psql
Path to the command-line client for the database engine. Defaults to a client in the current path named appropriately for the database engine.
sqitch check --db-name widgets sqitch check -d bricolage
Name of the database. In general, targets and URIs are preferred, but this option can be used to override the database name in a target.
sqitch check --db-username root sqitch check --db-user postgres sqitch check -u Mom
User name to use when connecting to the database. Does not apply to all engines. In general, targets and URIs are preferred, but this option can be used to override the user name in a target.
sqitch check --db-host db.example.com sqitch check -h appdb.example.net
Host name to use when connecting to the database. Does not apply to all engines. In general, targets and URIs are preferred, but this option can be used to override the host name in a target.
sqitch check --db-port 7654 sqitch check -p 5431
Port number to connect to. Does not apply to all engines. In general, targets and URIs are preferred, but this option can be used to override the port in a target.
sqitch check --plan-file my.plan
Path to the deployment plan file. Overrides target, engine, and core configuration values. Defaults to $top_dir/sqitch.plan.
Part of the sqitch suite.
2022-10-15 | perl v5.34.0 |