summaryrefslogtreecommitdiff
path: root/sql/tables/resume.education.sql
blob: 161dbfcfe648533d96911425cbd4424b74bf8f32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
drop table resume.education cascade;

create table resume.education (
    id serial8 primary key,
    user_id bigint not null references auth.users(id),
    school character varying(255) not null,
    start_date character varying(255) not null,
    end_date character varying(255) not null,
    major character varying(255) not null,
    minor character varying(255),
    degree character varying(255) not null,
    progress character varying(255) not null
);