From 241c045bb9cdf000c2c758f20348bba6121036af Mon Sep 17 00:00:00 2001 From: szymonsztuka Date: Sat, 3 Nov 2018 10:36:20 +0000 Subject: [PATCH] Added back Liquibase script for FungibleState (#1526) Added back Liquibase script for FungibleState column change to nullable/ commit dd60ae2 with modification to run for H2 database only. For standalone databases the column `vault_fungible_states .issuer_ref `was always nullable, however using H2 db from OS it could be not null (as it was created from JPA annotations) . --- .../migration/vault-schema.changelog-master.xml | 1 + .../resources/migration/vault-schema.changelog-v7.xml | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 node/src/main/resources/migration/vault-schema.changelog-v7.xml diff --git a/node/src/main/resources/migration/vault-schema.changelog-master.xml b/node/src/main/resources/migration/vault-schema.changelog-master.xml index a993718e77..d1b1cd6f3d 100644 --- a/node/src/main/resources/migration/vault-schema.changelog-master.xml +++ b/node/src/main/resources/migration/vault-schema.changelog-master.xml @@ -10,5 +10,6 @@ + diff --git a/node/src/main/resources/migration/vault-schema.changelog-v7.xml b/node/src/main/resources/migration/vault-schema.changelog-v7.xml new file mode 100644 index 0000000000..8f159da83e --- /dev/null +++ b/node/src/main/resources/migration/vault-schema.changelog-v7.xml @@ -0,0 +1,9 @@ + + + + + + + \ No newline at end of file