Commit 827980f7 by mercymodest

feat: add calendar sql

parent faf401ea
alter table sys_user alter table sys_user
...@@ -20,3 +20,18 @@ create index t_business_description_language_type_index ...@@ -20,3 +20,18 @@ create index t_business_description_language_type_index
create index idx_sync_class_pass create index idx_sync_class_pass
on store_course (sync_class_pass); on store_course (sync_class_pass);
alter table t_business_description
add business_extend_id bigint null comment '业务拓展ID etc.同一个题目的不同语言版本的 extId 相同';
alter table t_business_description
add sort int null comment '排序 从小到大排序';
alter table t_questionnaire
add business_extend_id bigint null comment '业务拓展ID etc.同一个题目的不同语言版本的 extId 相同';
alter table t_questionnaire
add sort int default 0 null comment '排序';
alter table t_user_questionnaire
change t_user_questionnaire_id user_questionnaire_id bigint not null comment '用户问卷ID';
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment