Spring Boot 환경에서 In-memory h2를 사용하던 중 에러가 발생했다.에러더보기더보기 create table `bookmark` ( `bookmark_id` integer not null auto_increment, `created_date` varchar(255) not null, `last_modified_date` varchar(255) not null, `name` varchar(255), `user_id` bigint, primary key (`bookmark_id`) ) engine=InnoDB create table `bookmark` ( `bookmark_id` intege..