Name
sqitch-rebase - Revert and redeploy database changes
Synopsis
sqitch rebase [options] [<database>]
sqitch rebase [options] [<database>] --onto-change <change>
sqitch rebase [options] [<database>] --onto-change <change> --upto-change <change>
sqitch rebase [options] [<database>] <change>
sqitch rebase [options] [<database>] <change> --upto-change <change>
sqitch rebase [options] [<database>] <change> <change>
sqitch rebase [options] [<database>] --modified
sqitch rebase [options] [<database>] --modified --upto-change <change>
Description
Revert and redeploy changes to the database. It’s effectively a shortcut for
running sqitch revert and sqitch deploy
in succession.
More specifically, starting from the current deployment state, changes will be
reverted in reverse the order of application. All changes will be reverted
unless a change is specified, either via --onto or with no option flag, in
which case changes will be reverted back to that change. If nothing needs to
be reverted, a message will be emitted explaining why and nothing will be
reverted.
Once the revert finishes, changes will be deployed starting from the deployed
state through the rest of the deployment plan. They will run to the latest
change in the plan, unless a change is specified, either via --upto or with
no option flag, in which case changes will be deployed up-to and including
that change.
If the database has not been deployed to, or its state already matches the specified change, no reverts will be run. And if, at that point, the database is up-to-date, no deploys will be run.
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.
Options
-
-t -
--targetThe target database to which to connect. This option can be either a URI or the name of a target in the configuration.
-
--onto-change -
--ontoSpecify the reversion change. Defaults to reverting all changes. See sqitchchanges for the various ways in which changes can be specified.
-
--upto-change -
--uptoSpecify the deployment change. Defaults to the last point in the plan. See sqitchchanges for the various ways in which changes can be specified.
-
-m -
--modifiedFinds the change to revert onto based on modifications to deploy scripts. Reverts the change prior to earliest change with a revised deploy script. Handy for quick rebases during iterative development cycles.
-
--modeSpecify the reversion mode to use in case of deploy failure. Possible values are:
-
allIn the event of failure, revert all deployed changes, back to
--onto-change. This is the default. -
tagIn the event of failure, revert all deployed changes to the last successfully-applied tag. If no tags were applied, all changes will be reverted to
--onto-change. -
changeIn the event of failure, no changes will be reverted. This is on the assumption that a change is atomic, and thus may may be deployed again.
-
-
--verifyVerify each change by running its verify script, if there is one, immediate after deploying it. If a verify test fails, the deploy will be considered to have failed and the appropriate reversion will be carried out, depending on the value of
--mode. -
--no-verifyDon’t verify each change. This is the default.
-
-s -
--setSet a variable name and value for use by the database engine client, if it supports variables. The format must be
name=value, e.g.,--set defuser='Homer Simpson'. Overrides any values loaded from “configuration Variables”. -
-e -
--set-deploySet a variable name and value for use by the database engine client when deploying, if it supports variables. The format must be
name=value, e.g.,--set defuser='Homer Simpson'. Overrides any values from--setor values loaded from “configuration Variables”. -
-r -
--set-revertSets a variable name to be used by the database engine client during when reverting, if it supports variables. The format must be
name=value, e.g.,--set defuser='Homer Simpson'. Overrides any values from--setor values loaded from “configuration Variables”. -
--log-onlyLog the changes as if they were deployed and reverted, but without actually running the deploy and revert scripts.
-
--lock-timeoutsqitch rebase --lock-timeout 600Set the number of seconds for Sqitch to wait to get an exclusive advisory lock on the target database, for engines that support such a lock. This lock prevents other instances of Sqitch from working on the target at the same time, but prevents no other database activity. Defaults to 60.
-
-yDisable the prompt that normally asks whether or not to execute the revert.
-
--registrysqitch rebase --registry registryThe name of the Sqitch registry schema or database in which sqitch stores its own data.
-
--db-client -
--clientsqitch rebase --client /usr/local/pgsql/bin/psqlPath to the command-line client for the database engine. Defaults to a client in the current path named appropriately for the database engine.
-
-d -
--db-namesqitch rebase --db-name widgets sqitch rebase -d bricolageName of the database. In general, targets and URIs are preferred, but this option can be used to override the database name in a target.
-
-u -
--db-user -
--db-usernamesqitch rebase --db-username root sqitch rebase --db-user postgres sqitch rebase -u MomUser 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.
-
-h -
--db-hostsqitch rebase --db-host db.example.com sqitch rebase -h appdb.example.netHost 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.
-
-p -
--db-portsqitch rebase --db-port 7654 sqitch rebase -p 5431Port 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.
-
--plan-file -
-fsqitch rebase --plan-file my.planPath to the deployment plan file. Overrides target, engine, and core configuration values. Defaults to
$top_dir/sqitch.plan.
Configuration Variables
-
[deploy.variables] -
[revert.variables]A section defining database client variables. These variables are useful if your database engine supports variables in scripts, such as PostgreSQL’s
psqlvariables, Vertica’svsqlvariables, MySQL’s user variables, SQL*Plus’sDEFINEvariables, Snowflake’s SnowSQL variables, and ClickHouse’s queries with parameters.May be overridden by
--set,--set-deploy,--set-revert, or target and engine configuration. Variables are merged in the following priority order:-
--set-revertUsed only while reverting changes.
-
--set-deployUsed only while deploying changes.
-
--setUsed while reverting and deploying changes.
-
target.$target.variablesUsed while reverting and deploying changes.
-
engine.$engine.variablesUsed while reverting and deploying changes.
-
revert.variablesUsed only while reverting changes.
-
deploy.variablesUsed while reverting and deploying changes.
-
core.variablesUsed while reverting and deploying changes.
-
-
rebase.verify -
deploy.verifyBoolean indicating whether or not to verify each change after deploying it.
-
rebase.mode -
deploy.modeDeploy mode. The supported values are the same as for the
--modeoption. -
rebase.no_prompt -
revert.no_promptA boolean value indicating whether or not to disable the prompt before executing the revert. The
rebase.no_promptvariable takes precedence overrevert.no_prompt, and both may of course be overridden by-y. -
rebase.prompt_accept -
revert.prompt_acceptA boolean value indicating whether default reply to the prompt before executing the revert should be “yes” or “no”. The
rebase.prompt_acceptvariable takes precedence overrevert.prompt_accept, and both default to true, meaning to accept the revert by default. -
rebase.strict -
revert.strictA boolean value that, when true, disables the
revertcommand. Therevert.strictvariable takes precedence overrevert.strict.
Sqitch
Part of the sqitch suite.
