forked from alexandru-slobodcicov/liquibase-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #366 from liquibase/DAT-14199
[DAT-14199] Rename xsd schema prefix
- Loading branch information
Showing
22 changed files
with
364 additions
and
364 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 18 additions & 18 deletions
36
src/test/resources/liquibase/ext/changelog.changeTypesMix_rollback.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
<databaseChangeLog | ||
xmlns="http://www.liquibase.org/xml/ns/dbchangelog" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:ext="http://www.liquibase.org/xml/ns/mongodb" | ||
xmlns:mongodb="http://www.liquibase.org/xml/ns/mongodb" | ||
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.0.xsd | ||
http://www.liquibase.org/xml/ns/mongodb http://www.liquibase.org/xml/ns/mongodb/liquibase-mongodb-latest.xsd"> | ||
|
||
<changeSet id="drop_students" author="MikeO"> | ||
<ext:runCommand> | ||
<ext:command> | ||
<mongodb:runCommand> | ||
<mongodb:command> | ||
{ drop: "students" } | ||
</ext:command> | ||
</ext:runCommand> | ||
</mongodb:command> | ||
</mongodb:runCommand> | ||
</changeSet> | ||
<changeSet id="drop_inventory" author="MarthaB"> | ||
<ext:runCommand> | ||
<ext:command> | ||
<mongodb:runCommand> | ||
<mongodb:command> | ||
{ drop: "inventory" } | ||
</ext:command> | ||
</ext:runCommand> | ||
</mongodb:command> | ||
</mongodb:runCommand> | ||
</changeSet> | ||
<changeSet id="drop_capped_inventory" author="ChristineM"> | ||
<ext:runCommand> | ||
<ext:command> | ||
<mongodb:runCommand> | ||
<mongodb:command> | ||
{ drop: "capped_inventory" } | ||
</ext:command> | ||
</ext:runCommand> | ||
</mongodb:command> | ||
</mongodb:runCommand> | ||
</changeSet> | ||
<changeSet id="drop_car" author="ChristineM"> | ||
<ext:runCommand> | ||
<ext:command> | ||
<mongodb:runCommand> | ||
<mongodb:command> | ||
{ drop: "car" } | ||
</ext:command> | ||
</ext:runCommand> | ||
</mongodb:command> | ||
</mongodb:runCommand> | ||
</changeSet> | ||
</databaseChangeLog> | ||
</databaseChangeLog> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.