=head1 Name sqitch-rebase - Revert and redeploy database changes =head1 Synopsis sqitch [options] rebase sqitch [options] rebase --onto-target sqitch [options] rebase --onto-target --upto-target sqitch [options] rebase sqitch [options] rebase --upto-target sqitch [options] rebase =head1 Description Revert and redeploy changes to the database. It's effectively a shortcut for running L|sqitch-revert> and L|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 target is specified, either via C<--onto> or with no option flag, in which case changes will be reverted back to that target. 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 target is specified, either via C<--upto> or with no option flag, in which case changes will be deployed up-to and including that target. If the database has not been deployed to, or its state already matches the specified target, no reverts will be run. And if, at that point, the database is up-to-date, no deploys will be run. =head1 Options =over =item C<--onto-target> =item C<--onto> Specify the reversion target. Defaults to reverting all changes. See L for the various ways in which change targets can be specified. =item C<--upto-target> =item C<--upto> Specify the deployment target. Defaults to the last point in the plan. See L for the various ways in which change targets can be specified. =item C<--mode> Specify the reversion mode to use in case of deploy failure. Possible values are: =over =item C In the event of failure, revert all deployed changes, back to C<--onto-target>. This is the default. =item C In 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 C<--onto-target>. =item C In 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. =back =item C<--verify> Verify 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 C<--mode>. =item C<--no-verify> Don't verify each change. This is the default. =item C<-s> =item C<--set> Set a variable name and value for use by the database engine client, if it supports variables. The format must be C, e.g., C<--set defuser='Homer Simpson'>. Overrides any values loaded from the C or C configurations. =item C<-d> =item C<--set-deploy> Set a variable name and value for use by the database engine client when deploying, if it supports variables. The format must be C, e.g., C<--set defuser='Homer Simpson'>. Overrides any values from C<--set> or loaded from the C configuration. =item C<-r> =item C<--set-revert> Sets a variable name to be used by the database engine client during when reverting, if it supports variables. The format must be C, e.g., C<--set defuser='Homer Simpson'>. Overrides any values from C<--set> or loaded from the C and C configurations. =item C<--log-only> Log the changes as if they were deployed and reverted, but without actually running the deploy and revert scripts. =item C<-y> Disable the prompt that normally asks whether or not to execute the revert. =back =head1 Configuration Variables =over =item C<[deploy.variables]> =item C<[revert.variables]> A section defining database client variables. The C configuration is read from the C command configuration, on the assumption that the values will generally be the same. If they're not, use C to override C. These variables are Useful if your database engine supports variables in scripts, such as PostgreSQL's L variables|http://www.postgresql.org/docs/current/static/app-psql.html#APP-PSQL-INTERPOLATION>. =item C =item C Boolean indicating whether or not to verify each change after deploying it. =item C<[rebase.no_prompt]> =item C<[revert.no_prompt]> A boolean value indicating whether or not to disable the prompt before executing the revert. The C variable takes precedence over C, and both may of course be overridden by C<-y>. =back =head1 Sqitch Part of the L suite.