curriculum-vitae/backend/db/3_education.sql

17 lines
No EOL
345 B
SQL

-- public.education definition
-- Drop table
-- DROP TABLE public.education;
CREATE TABLE public.education (
id serial4 NOT NULL,
start_year date NULL,
end_year date NULL,
school text NULL,
speciality text NULL,
school_location text NULL,
school_options text NULL,
picture_url text NULL,
CONSTRAINT education_pkey PRIMARY KEY (id)
);