I used run following sql commands on my hibernate_orm_test DB
create table Laptop (id bigint not null, brand varchar(255), externalStorage integer not null, name varchar(255), ram integer not null, primary key (id)) engine=InnoDB;
create table Laptop_SEQ (next_val bigint) engine=InnoDB;
insert into Laptop_SEQ values ( 1 );
Its resolved my issue.