summaryrefslogtreecommitdiffstats
path: root/mso-catalog-db/src/main/resources/Service.hbm.xml
diff options
context:
space:
mode:
Diffstat (limited to 'mso-catalog-db/src/main/resources/Service.hbm.xml')
-rw-r--r--mso-catalog-db/src/main/resources/Service.hbm.xml11
1 files changed, 7 insertions, 4 deletions
diff --git a/mso-catalog-db/src/main/resources/Service.hbm.xml b/mso-catalog-db/src/main/resources/Service.hbm.xml
index 07f7795725..2344432056 100644
--- a/mso-catalog-db/src/main/resources/Service.hbm.xml
+++ b/mso-catalog-db/src/main/resources/Service.hbm.xml
@@ -42,9 +42,12 @@
<property name="category" column="SERVICE_CATEGORY" type="string" length="20"/>
<property name="serviceType" column="SERVICE_TYPE" type="string" length="20"/>
<property name="serviceRole" column="SERVICE_ROLE" type="string" length="20"/>
- <property name="environmentContext" column="ENVIRONMENT_CONTEXT" type="string" length="200"/>
- <property name="workloadContext" column="WORKLOAD_CONTEXT" type="string" length="200"/>
-
+ <property name="environmentContext" type="string" length="200">
+ <column name="ENVIRONMENT_CONTEXT" default="null"/>
+ </property>
+ <property name="workloadContext" type="string" length="200">
+ <column name="WORKLOAD_CONTEXT" default="null"/>
+ </property>
<map name="recipes" inverse="true" cascade="all">
<key column="SERVICE_MODEL_UUID"/>
@@ -57,4 +60,4 @@
<one-to-many class="ServiceToResourceCustomization" />
</set>
</class>
-</hibernate-mapping> \ No newline at end of file
+</hibernate-mapping>