Commit 1991c4b9 by mercymodest

feat:- add yoga/calender sql

parent bf3dd311
# CREATE TABLE `api_client_credentials` # CREATE TABLE `api_client_credentials`
...@@ -316,6 +316,21 @@ alter table user_card_change_logs ...@@ -316,6 +316,21 @@ alter table user_card_change_logs
alter table user_card alter table user_card
add audit_time datetime null comment '发起审核时间'; add audit_time datetime null comment '发起审核时间';
alter table user_card_change_logs
modify remarks text null comment '会员卡审核备注';
create index admin_store_relation_store_uuid_index
on admin_store_relation (store_uuid);
alter table user_card
add last_audit_user_card_uuid bigint null comment '上次审核会员卡uuid';
......
alter table sys_user alter table sys_user
...@@ -38,3 +38,22 @@ alter table t_user_questionnaire ...@@ -38,3 +38,22 @@ alter table t_user_questionnaire
alter table t_user alter table t_user
add phone varchar(50) null comment '用户手机号'; add phone varchar(50) null comment '用户手机号';
alter table t_list
add is_built_in tinyint(1) default 0 null comment '是否内置清单 0:否 1:是(内置清单不可删除)';
alter table t_list
add is_edited tinyint(1) default 0 null comment '内建清单是否已经编辑 0:否 1:是(仅有内建清单此字段才有意义,用户自建清单不需要)';
alter table t_user_calendar_categories
modify category_type tinyint(1) default 0 not null comment ' 类别分类:0 表示事项,1 表示杂物(杂物来源于事项,如果类别为杂物类别,则类别也属于事项分类) 2:晚餐计划。';
alter table t_events
add start_date_time datetime null comment '事项开始时间(UTC+0)' after is_all_day;
alter table t_events
add end_date_time datetime null comment '事项结束时间(UTC+0)' after start_time;
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