Skip to content

Commit 504e159

Browse files
One-off version reverting to Corda 4.8 for internal work.
1 parent 2b2cda5 commit 504e159

File tree

4 files changed

+31
-2
lines changed

4 files changed

+31
-2
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=onixlabs-corda-bnms
22
group=io.onixlabs
3-
version=2.0.0-rc12-pv10
3+
version=2.0.0-rc13-pv10
44
onixlabs.development.jarsign.keystore=../lib/onixlabs.development.pkcs12
55
onixlabs.development.jarsign.password=5891f47942424d2acbe108691fdb5ba258712fca7e4762be4327241ebf3dbfa3
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
2+
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.5.xsd">
5+
<changeSet author="ONIXLabs" id="update-v2-membership_states">
6+
<addColumn tableName="membership_states">
7+
<column name="normalized_network_value" type="nvarchar(255)">
8+
<constraints nullable="false"/>
9+
</column>
10+
</addColumn>
11+
</changeSet>
12+
</databaseChangeLog>

onixlabs-corda-bnms-contract/src/main/resources/migration/relationship-attestation-schema.changelog-v2.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,16 @@
55
<changeSet author="ONIXLabs" id="update-v2-relationship_attestation_states">
66
<dropColumn tableName="relationship_attestation_states"
77
columnName="pointer_state_linear_id"/>
8+
<addColumn tableName="relationship_attestation_states">
9+
<column name="normalized_network_value" type="nvarchar(255)">
10+
<constraints nullable="false"/>
11+
</column>
12+
</addColumn>
813
<renameColumn tableName="relationship_attestation_states"
914
oldColumnName="pointer_state_ref"
1015
newColumnName="pointer"/>
1116
<renameColumn tableName="relationship_attestation_states"
1217
oldColumnName="pointer_state_class"
1318
newColumnName="pointer_state_type"/>
1419
</changeSet>
15-
</databaseChangeLog>
20+
</databaseChangeLog>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
2+
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.5.xsd">
5+
<changeSet author="ONIXLabs" id="update-v2-relationship_states">
6+
<addColumn tableName="relationship_states">
7+
<column name="normalized_network_value" type="nvarchar(255)">
8+
<constraints nullable="false"/>
9+
</column>
10+
</addColumn>
11+
</changeSet>
12+
</databaseChangeLog>

0 commit comments

Comments
 (0)