...
The normal release workflow allows you to deploy and roll back changesets throughout a project pipeline. Rollbacks can be automatic for some changes or be performed by custom rollback scripts you supply. See /wiki/spaces/DDOC59/pages/795673649Rolling Back Changes.
However, the development workflow is for making changes to the changesets (and other changesets they affect). When you use the -ignore, -cleanup, and -replace scripts, they mark the original changesets so that they are no longer deployed. Changes are anticipated at these stages in a pipeline. They are not expected in later stages.
...
invoice_columns.sql
invoice_columns-ignore.sql or invoice_columns_ignore.sql
When invoice_columns-ignore.sql or invoice_columns_ignore.sql
is processed, the ignore
attribute is set on all of the original changesets produced by invoice_columns.sql
. The changesets are no longer deployed.
Note |
---|
Do not use more than one suffix when working in a development workflow (-ignore, -unignore, -replace, -cleanup, -rollback). For example, when you update a |
...