From f6d4396d85b6f8165df0c88fc189e0ec9b80eaa3 Mon Sep 17 00:00:00 2001 From: James Daugherty Date: Wed, 19 Feb 2025 23:50:19 -0500 Subject: [PATCH] Removing documented command that was removed in commit 23b3ca66 --- .../asciidoc/databaseMigration/index.adoc | 3 -- .../dbm-register-changelog.adoc | 34 ------------------- 2 files changed, 37 deletions(-) delete mode 100644 docs/src/docs/asciidoc/databaseMigration/ref/Maintenance Scripts/dbm-register-changelog.adoc diff --git a/docs/src/docs/asciidoc/databaseMigration/index.adoc b/docs/src/docs/asciidoc/databaseMigration/index.adoc index d1a530993..f46f5e1c4 100644 --- a/docs/src/docs/asciidoc/databaseMigration/index.adoc +++ b/docs/src/docs/asciidoc/databaseMigration/index.adoc @@ -73,9 +73,6 @@ include::ref/Maintenance Scripts/dbm-list-tags.adoc[] [[ref-maintenance-scripts-dbm-mark-next-changeset-ran]] include::ref/Maintenance Scripts/dbm-mark-next-changeset-ran.adoc[] -[[ref-maintenance-scripts-dbm-register-changelog]] -include::ref/Maintenance Scripts/dbm-register-changelog.adoc[] - [[ref-maintenance-scripts-dbm-release-locks]] include::ref/Maintenance Scripts/dbm-release-locks.adoc[] diff --git a/docs/src/docs/asciidoc/databaseMigration/ref/Maintenance Scripts/dbm-register-changelog.adoc b/docs/src/docs/asciidoc/databaseMigration/ref/Maintenance Scripts/dbm-register-changelog.adoc deleted file mode 100644 index fdbca3623..000000000 --- a/docs/src/docs/asciidoc/databaseMigration/ref/Maintenance Scripts/dbm-register-changelog.adoc +++ /dev/null @@ -1,34 +0,0 @@ -===== dbm-register-changelog - -====== Purpose - -Adds an include for the specified changelog to the main changelog. - -====== Description - -Usage: -[source,java] ----- -grails <> dbm-register-changelog <> --dataSource=<> ----- - -Required arguments: - -* `filename` - The path to the changelog file to include. - -Optional arguments: - -* `dataSource` - if provided will run the script for the specified dataSource using `changelog-<>.groovy` if a `filename` is not given. Not needed for the default dataSource. - -NOTE: Note that the `dataSource` parameter name and value must be quoted if executed in Windows, e.g. -[source,groovy] ----- -grails dbm-diff "--dataSource=<>" ----- - -NOTE: For the `dataSource` parameter, if the data source is configured as `reports` underneath the `dataSources` key in `application.[yml|groovy]` -the suffix of `reports` will be used as the parameter value. -[source,groovy] ----- ---dataSource=reports -----