15 lines
No EOL
325 B
SQL
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)
|
|
); |