-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Align liquibase scripts with the master branch
- Loading branch information
1 parent
9215b22
commit f8ba7a7
Showing
4 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
File renamed without changes.
15 changes: 15 additions & 0 deletions
15
registry-persistence/src/main/resources/liquibase/144-mdt-endpoint-installation-types.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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<databaseChangeLog | ||
xmlns="http://www.liquibase.org/xml/ns/dbchangelog" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-2.0.xsd"> | ||
|
||
<changeSet id="144" author="fmendez" runInTransaction="false"> | ||
<sql splitStatements="false" stripComments="true"> | ||
<![CDATA[ | ||
ALTER TYPE enum_installation_type ADD VALUE 'MDT_INSTALLATION'; | ||
ALTER TYPE enum_endpoint_type ADD VALUE 'BIOM_1_0'; | ||
ALTER TYPE enum_endpoint_type ADD VALUE 'BIOM_2_1'; | ||
]]> | ||
</sql> | ||
</changeSet> | ||
</databaseChangeLog> |
File renamed without changes.
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