blob: 638a50ce7bed575e2665b454c2dfb55ad3776330 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
drop table resume.education cascade;
create table resume.education (
id serial8 primary key,
school character varying(255) not null,
start_date timestamp without time zone not null default now(),
end_date timestamp without time zone not null default now(),
major character varying(255) not null,
minor character varying(255) not null,
degree character varying(255) not null,
progress character varying(255) not null
);
|