Data Synchronized

Database Required

수파베이스에 아래 테이블을 생성해 주세요.

create table resumes (
  id text primary key,
  content jsonb not null,
  updated_at timestamp with time zone default now()
);