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