[스프링 부트] chapter 31. 스프링 데이터 7부 데이터베이스 초기화

스프링 데이터 7부 데이터베이스 초기화

JPA를 사용한 데이터베이스 초기화

SQL 스크립트를 사용한 데이터베이스 초기화

drop table account if exists
drop sequence if exists hibernate_sequence
create sequence hibernate_sequence start with 1 increment by 1
create table account (id bigint not null, password varchar(255), username varchar(255), primary key (id))