Liquibase script for a table name node_attchments_contracts change following fix for CORDA-1499 merged from OS.

This commit is contained in:
szymonsztuka 2018-06-04 17:53:01 +01:00
parent f5c9a398ad
commit 703f0cc86f
2 changed files with 13 additions and 1 deletions

View File

@ -16,5 +16,5 @@
<include file="migration/node-core.changelog-init.xml"/>
<include file="migration/node-core.changelog-v3.xml"/>
<include file="migration/node-core.changelog-v3-GA.xml"/>
</databaseChangeLog>

View File

@ -0,0 +1,12 @@
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.5.xsd"
logicalFilePath="migration/node-services.changelog-init.xml">
<changeSet author="R3.Corda" id="rename_contract_attachment">
<renameTable newTableName="node_attachments_contracts"
oldTableName="node_attchments_contracts"/>
</changeSet>
</databaseChangeLog>