I am using Hibernate 5.2.1.Finally as implementation to handle MySQL database. The problem is that tables are being generated with the first letter in high box, I would force to be all in the box via file of persistence. Currently my file is this:
<persistence-unit name="testeUP" transaction-type="RESOURCE_LOCAL">
<properties>
<property name="javax.persistence.jdbc.url" value="jdbc:mysql://192.168.56.100:3306/locadora"/>
<property name="javax.persistence.jdbc.user" value="root"/>
<property name="javax.persistence.jdbc.password" value="1QAZxsw2"/>
<property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver"/>
<property name="hibernate.hbm2ddl.auto" value="update"/>
<property name="hibernate.show_sql" value="true"/>
<property name="hibernate.format_sql" value="true"/>
<property name="hibernate.diaLect" value="org.hibernate.diaLect.MySQLDiaLect"/>
</properties>
</persistence-unit>
Is it possible to force this behavior? If so, how?