summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Atallah <ralphat@users.sourceforge.net>2008-11-11 17:15:38 +0000
committerRalph Atallah <ralphat@users.sourceforge.net>2008-11-11 17:15:38 +0000
commita8a150d2ae7ec2eecdcd35d3365cc7e27bf5019e (patch)
tree4320c5510540795aa2c89d9f8243c4aab8cc3f15
parent4dbf8ac7c662ed5bc1a55e874692a7aede7248e8 (diff)
hibernate.hbm2ddl.auto is now set to "update" in mysql.hbm.xml file to ensure that DB gets created/updated.
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@568 09dcff7a-b715-0410-9601-b79a96267cd0
-rw-r--r--orkbasej/java/mysql.hbm.template.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/orkbasej/java/mysql.hbm.template.xml b/orkbasej/java/mysql.hbm.template.xml
index 037e99f..2ff47f4 100644
--- a/orkbasej/java/mysql.hbm.template.xml
+++ b/orkbasej/java/mysql.hbm.template.xml
@@ -10,7 +10,7 @@
<property name="hibernate.connection.password">password</property>
<property name="hibernate.connection.username">root</property>
- <!--<property name="hibernate.hbm2ddl.auto">update</property>--> <!-- update, create, create-drop -->
+ <property name="hibernate.hbm2ddl.auto">update</property> <!-- update, create, create-drop -->
<property name="hibernate.show_sql">false</property>
<property name="hibernate.max_fetch_depth">1</property>