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 );