-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/folio-org/mod-data-export…
…-spring into ualibweb-merged
- Loading branch information
Showing
3 changed files
with
18 additions
and
0 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
3 changes: 3 additions & 0 deletions
3
src/main/resources/db/changelog/changes/04-01-2024_add_types_for_instance.sql
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,3 @@ | ||
ALTER TYPE EntityType ADD VALUE IF NOT EXISTS 'INSTANCE'; | ||
ALTER TYPE IdentifierType ADD VALUE IF NOT EXISTS 'ISBN'; | ||
ALTER TYPE IdentifierType ADD VALUE IF NOT EXISTS 'ISSN'; |
13 changes: 13 additions & 0 deletions
13
src/main/resources/db/changelog/changes/04-01-2024_add_types_for_instance.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,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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-3.8.xsd"> | ||
|
||
|
||
<changeSet id="04-01-2024_add_types_for_instance" author="firebird"> | ||
<sqlFile path="04-01-2024_add_types_for_instance.sql" relativeToChangelogFile="true" /> | ||
</changeSet> | ||
|
||
</databaseChangeLog> |