Commit 53ecd432 by mercymodest

feat: add yago 2.0.0 update sql

parent c2c4785a
alter table company_cfg_reserve
alter table company_cfg_reserve
......@@ -48,6 +48,8 @@ create index room_order_company_name_index
alter table room_order
add appointment_type tinyint(1) default 0 null comment '预约类型 0:用户预约 1:后台预约';
alter table room_order
modify appointment_type tinyint(1) default 0 null comment '预约类型枚举 0:用户预约 1:后台预约 2:后台预约,未查询到公司信息';
......
CREATE TABLE `api_client_credentials`
CREATE TABLE `api_client_credentials`
......@@ -94,5 +94,19 @@ create index idx_store_uuid
on user_card_subscribe_logs (store_uuid);
alter table store
add sync_class_pass tinyint(1) default 0 null comment '是否将场馆信息同步到ClassPass 0:不同步 1:同步 默认 0';
alter table store_course
add sync_class_pass tinyint(1) default 0 null comment '是否将课程信息信息同步到ClassPass 0:不同步 1:同步 默认 0';
alter table common_course
add sync_class_pass tinyint(1) default 0 null comment '是否将场馆信息同步到ClassPass 0:不同步 1:同步 默认 0';
# 新增菜单按钮: 设置CP固定席位
INSERT menus (uuid, company_uuid, name, parent_uuid, sort, create_time, update_time, url, type, classes)
values ('c628e0c0fff04b24af48086330329829', '846782090753224704', '设置CP固定席位', '5f96031803ed11ecbf1c00163e0434b9',
4, now(), now(), '', '2', null);
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