17 lines
No EOL
360 B
SQL
17 lines
No EOL
360 B
SQL
-- public.experience definition
|
|
|
|
-- Drop table
|
|
|
|
-- DROP TABLE public.experience;
|
|
|
|
CREATE TABLE public.experience (
|
|
id serial4 NOT NULL,
|
|
job_position text NULL,
|
|
job_description text NULL,
|
|
enterprise text NULL,
|
|
enterprise_location text NULL,
|
|
start_year date NULL,
|
|
end_year date NULL,
|
|
picture_url text NULL,
|
|
CONSTRAINT experience_pkey PRIMARY KEY (id)
|
|
); |