summaryrefslogtreecommitdiff
path: root/sql/tables/resume.resume_education.sql
blob: 92bf58a387388b3d7e72182bd40c2beef955f842 (plain)
1
2
3
4
5
6
7
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)
);