2024-08-07 10:50:34 +02:00
|
|
|
create table sveden_education_contingent
|
|
|
|
(
|
2024-08-12 14:14:49 +02:00
|
|
|
id serial not null primary key,
|
2024-08-07 10:50:34 +02:00
|
|
|
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 'Общая численность обучающихся'
|
|
|
|
);
|