79459388

Date: 2025-02-22 10:03:14
Score: 1
Natty:
Report link

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.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: mildgrey