Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 515f73e

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 7d20e8f + 468e703 commit 515f73e

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

_includes/subnav_documentation.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@
1212
<li><a href="{{pageRoot}}/documentation/generating_changelogs.html"><span>Generate Changelog</span></a></li>
1313
<li><a href="{{pageRoot}}/documentation/dbdoc.html"><span>DBDoc</span></a></li>
1414
<li><a href="{{pageRoot}}/documentation/sql_output.html"><span>SQL Output</span></a></li>
15-
<li><a href="{{pageRoot}}/documentation/sdk/index.html"><span>SDK</span></a></li>
15+
<li><a href="{{pageRoot}}/documentation/sdk/index.html"><span>SDK</span></a></li>
16+
<li><a href="{{pageRoot}}/documentation/offline.html"><span>Offline Database Support</span></a></li>

documentation/command_line.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ If you run the command line migrator without any arguments, you will get a help
7474
<table>
7575
<tr><th>Command</th><th>Description</th></tr>
7676
<tr><td>tag &lt;tag&gt;</td><td>"Tags" the current database state for future rollback.</td></tr>
77+
<tr><td>tagExists &lt;tag&gt;</td><td>Checks whether the given tag is already existing.</td></tr>
7778
<tr><td>status</td><td>Outputs count (list if --verbose) of unrun change sets.</td></tr>
7879
<tr><td>validate</td><td>Checks the changelog for errors.</td></tr>
7980
<tr><td>changelogSync</td><td>Mark all changes as executed in the database.</td></tr>

documentation/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ includeDaticalBox: true
4646
<li><a href="spring.html">Spring</a></li>
4747
<li><a href="servlet_listener.html">Servlet Listener</a></li>
4848
<li><a href="cdi.html">CDI Environment</a></li>
49+
<li><a href="offline.html">Using Offline Database Support</a></li>
4950
</ul>
5051

5152
<h2>Internals</h2>
@@ -93,4 +94,4 @@ If no context is specified, the changeset will run regardless of the execution c
9394

9495
</div>
9596

96-
</div>
97+
</div>

documentation/offline.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ _Since 3.1.0_
2626

2727
If your environment does not lend itself to using updateSql with test and backup databases, you can run Liquibase using an "offline" database.
2828

29-
Running in offline mode only supports "updateSql". It does not support direct update, diff, or preconditions as there is nothing to actually update or state to check.
29+
Running in offline mode only supports "updateSql", "rollbackSQL", "tag", and "tagExists". It does not support direct update, diff, or preconditions as there is nothing to actually update or state to check.
3030

3131
An offline database is "connected" to using a url syntax of `offline:DATABASE_TYPE?param1=value1&aparam2=value2`.
3232

@@ -42,5 +42,5 @@ An offline database is "connected" to using a url syntax of `offline:DATABASE_TY
4242
### Examples:
4343

4444
- `offline:oracle`
45-
- `offine:mssql?changeLogFile=/src/changelog.csv`
46-
- `offline:mysql?version=5.4.21&changeLogFile=/src/changelog.csv`
45+
- `offline:mssql?changeLogFile=/src/changelog.csv`
46+
- `offline:mysql?version=5.4.21&changeLogFile=/src/changelog.csv`

0 commit comments

Comments
 (0)