11. AWS에 프로젝트 배포하기 일래스틱 빈스토크 서비스 생성 후 RDS를 추가했습니다.create database blog;use blog;create table article( id bigint not null AUTO_INCREMENT, author varchar(255) not null, content varchar(255) not null, created_at timestamp, title varchar(255) not null, updated_at timestamp, primary key (id));create table refresh_token ( id bigint not null AUTO_INCREMENT, refresh_token varc..