sqitch-revert(3pm) | User Contributed Perl Documentation | sqitch-revert(3pm) |
sqitch-revert - Revert changes to a database
sqitch revert [options] [<database>] sqitch revert [options] [<database>] <change> sqitch revert [options] [<database>] --to-change <change> sqitch revert [options] [<database>] --modified
Revert changes to the database. 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 "--to" or with no option flag, in which case changes will be reverted back to that change.
If the database has not been deployed to, or its state already matches the specified change, no changes will be made. If the change appears later in the plan than the currently-deployed state, an error will be returned, along with a suggestion to instead use sqitch-deploy.
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.
Attention Git Users
If you're a git user thinking this is like "git revert", it's not. "sqitch revert" is more like time travel. It takes your database back to the state it had just after applying the target change. It feels like magic, but it's actually all the time you spent writing revert scripts that finally pays off. Starting from the last change currently deployed, "sqitch revert" runs each revert script in turn until the target change is reached and becomes the last change deployed.
sqitch deploy --lock-timeout 600
Set 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 deploying to the target at the same time, but prevents no other database activity. Defaults to 60.
sqitch revert --registry registry
The name of the Sqitch registry schema or database in which sqitch stores its own data.
sqitch revert --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 revert --db-name widgets sqitch revert -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 revert --db-username root sqitch revert --db-user postgres sqitch revert -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 revert --db-host db.example.com sqitch revert -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 revert --db-port 7654 sqitch revert -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 revert --plan-file my.plan
Path to the deployment plan file. Overrides target, engine, and core configuration values. Defaults to $top_dir/sqitch.plan.
These variables are useful if your database engine supports variables in scripts, such as PostgreSQL's "psql" variables <https://www.postgresql.org/docs/current/static/app-psql.html#APP-PSQL-INTERPOLATION>, Vertica's "vsql" variables <https://my.vertica.com/docs/7.1.x/HTML/index.htm#Authoring/ConnectingToHPVertica/vsql/Variables.htm>, MySQL's user variables <https://dev.mysql.com/doc/refman/5.6/en/user-variables.html>, SQL*Plus's "DEFINE" variables <https://docs.oracle.com/cd/B19306_01/server.102/b14357/ch12017.htm>, and Snowflake's SnowSQL variables <https://docs.snowflake.com/en/user-guide/snowsql-use.html#using-variables>.
May be overridden by "--set" or target and engine configuration. Variables are merged in the following priority order:
Part of the sqitch suite.
2022-10-15 | perl v5.34.0 |