blob: 6e1dc3d042461125e72f1593e17802d47334a7bf (
plain)
1
2
3
4
5
6
7
8
9
10
|
drop table resume.job cascade;
create table resume.job (
id serial8 primary key,
company character varying(255) not null,
location 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(),
overview text
);
|