drop table resume.resume_education cascade; create table resume.resume_education ( id serial8 primary key, resume_id bigint not null references resume.resume(id), education_id bigint not null references resume.education(id) );