I am using Springboot 2.7.2
with Hibernate
and Mysql 8
. Is there a way to make an Entity
class so as to execute a create table Query like this.
CREATE TABLE `settings` (
`SettingsId` enum('1') NOT NULL,
................,
................,
PRIMARY KEY (`SettingsId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1