-
Notifications
You must be signed in to change notification settings - Fork 11
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 #1045 from /issues/1044-lb-signature-body
Fix #1044: Missing column signature_data_body in Liquibase
- Loading branch information
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
...ngelog/changesets/powerauth-java-server/1.5.x/20230316-add-column-signature-data-body.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,18 @@ | ||
<?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-4.9.xsd"> | ||
|
||
<changeSet id="1" logicalFilePath="powerauth-java-server/1.5.x/20230324-add-column-signature-data-body" author="Roman Strobl"> | ||
<preConditions onFail="MARK_RAN"> | ||
<not> | ||
<columnExists tableName="pa_signature_audit" columnName="signature_data_body"/> | ||
</not> | ||
</preConditions> | ||
<comment>Add signature_data_body column of type Clob</comment> | ||
<addColumn tableName="pa_signature_audit"> | ||
<column name="signature_data_body" type="clob"/> | ||
</addColumn> | ||
</changeSet> | ||
|
||
</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