im creating a customer table using java. but when I'm run project console said like this.
Hibernate: create table customer (id bigint not null auto_increment, dob date, full_name varchar(255), installment integer, loan_amount float, email_id varchar(255), primary key (id)) type=MyISAM 2023-02-16 11:07:21.855 WARN 7288 --- [ restartedMain] o.h.t.s.i.ExceptionHandlerLoggedImpl : GenerationTarget encountered exception accepting command : Error executing DDL "create table customer (id bigint not null auto_increment, dob date, full_name varchar(255), installment integer, loan_amount float, email_id varchar(255), primary key (id)) type=MyISAM" via JDBC Statement
How do I fix this error?