curriculum-vitae/backend/db/4_info_text.sql
2024-02-15 00:45:38 +01:00

15 lines
No EOL
325 B
SQL

-- public.skills definition
-- Drop table
-- DROP TABLE public.skills;
CREATE TABLE public.info_text (
softskills text NULL,
interests text NULL,
lang_id int4 NOT NULL,
title text NULL,
description text NULL,
pdf_url text NULL,
CONSTRAINT skills_languages_fk FOREIGN KEY (lang_id) REFERENCES public.languages(id)
);