sveden-parser/create_table.sql

11 lines
513 B
SQL

create table sveden_education_contingent
(
id serial not null primary key,
org_id int null,
spec_id int null,
spec_code varchar(100) null comment 'Код',
spec_name text null comment 'Наименование',
edu_level text null comment 'Уровень образования',
edu_forms text null comment 'Формы обучения',
contingent int not null comment 'Общая численность обучающихся'
);