diff options
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2017-10-13 04:44:17 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-10-13 04:44:17 +0000 |
commit | 18345bdd80561efd7031086d48b2321b69d2e0e4 (patch) | |
tree | 3170e14e50b82c22a80f11df51b71fae9ff21dea /mso-catalog-db/src/main/resources/VfModule.hbm.xml | |
parent | a10e358bb0d385b22cbd7b38b069401f61206359 (diff) | |
parent | 20e60c893bbed7f68a9475a3886b58d150d92b57 (diff) |
Merge "Update hibernate files to initialize timestamp"
Diffstat (limited to 'mso-catalog-db/src/main/resources/VfModule.hbm.xml')
-rw-r--r-- | mso-catalog-db/src/main/resources/VfModule.hbm.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mso-catalog-db/src/main/resources/VfModule.hbm.xml b/mso-catalog-db/src/main/resources/VfModule.hbm.xml index 16f3d399ee..a08e4d1ce2 100644 --- a/mso-catalog-db/src/main/resources/VfModule.hbm.xml +++ b/mso-catalog-db/src/main/resources/VfModule.hbm.xml @@ -20,7 +20,7 @@ --> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" -"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> +"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> <!-- Generated Apr 28, 2016 2:44:06 PM by Hibernate Tools 3.4.0.CR1 --> <hibernate-mapping package="org.openecomp.mso.db.catalog.beans"> <class name="VfModule" table="VF_MODULE"> @@ -36,7 +36,9 @@ <property name="heatTemplateArtifactUUId" type="string" column="HEAT_TEMPLATE_ARTIFACT_UUID" length="200" not-null="true" /> <property name="volHeatTemplateArtifactUUId" type="string" column="VOL_HEAT_TEMPLATE_ARTIFACT_UUID" length="200" /> - <property name="created" type="timestamp" generated="insert" update="false" insert="false" column ="CREATION_TIMESTAMP" not-null="true"/> + <property name="created" type="timestamp" generated="insert" update="false" insert="false" not-null="true"> + <column name="CREATION_TIMESTAMP" default="CURRENT_TIMESTAMP"/> + </property> </class> </hibernate-mapping>
\ No newline at end of file |