summaryrefslogtreecommitdiff
path: root/sql/tables/resume.resume_education.sql
blob: 739169deee3c80762a696a65f9773d6ca8cbe243 (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 int not null references resume.resume(id),
    education_id int not null references resume.education(id)
);