diff options
author | Rob Daugherty <rd472p@att.com> | 2017-10-24 17:09:04 -0400 |
---|---|---|
committer | Rob Daugherty <rd472p@att.com> | 2017-10-24 17:09:04 -0400 |
commit | c52588edfa229b2478f04ef3c24ecb3eb8ffbe2f (patch) | |
tree | 428aaeb5999945669c3ffde3d2b0de800610a2f4 /mso-catalog-db/src/main/resources/HeatFiles.hbm.xml | |
parent | 0f8457a9f13aaad6de8c597abee6795a7c6f8e3f (diff) |
NetworkResource modelInvariantUUID is too short
It is currently 20. It should be 200.
I'm also fixing HeatFiles.hbm.xml to match a recent
schema fix (SO-247).
Issue: SO-264
Change-Id: I2bd6fc480310abc80b1a189a83b1e3f73c90149b
Signed-off-by: Rob Daugherty <rd472p@att.com>
Diffstat (limited to 'mso-catalog-db/src/main/resources/HeatFiles.hbm.xml')
-rw-r--r-- | mso-catalog-db/src/main/resources/HeatFiles.hbm.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mso-catalog-db/src/main/resources/HeatFiles.hbm.xml b/mso-catalog-db/src/main/resources/HeatFiles.hbm.xml index 4674239a99..5a2c4aa537 100644 --- a/mso-catalog-db/src/main/resources/HeatFiles.hbm.xml +++ b/mso-catalog-db/src/main/resources/HeatFiles.hbm.xml @@ -36,7 +36,7 @@ <property name="version" type="java.lang.String" length="20" not-null="true">
<column name="VERSION" />
</property>
- <property name="fileBody" type="java.lang.String" not-null="true">
+ <property name="fileBody" type="text" not-null="true">
<column name="BODY" />
</property>
<property name="created" type="java.sql.Timestamp" generated="insert" update="false" insert="false" not-null="true">
|