Commit f8eecd2e by 仲光辉

feat: add sql.

parent 05fa5348
# alter table admin
# alter table admin
......@@ -1610,15 +1610,22 @@
# 执行时间: 2023730 09:52
alter table region
add region_type tinyint(1) default 0 null comment '城市类别 0: 未设置类型; 1:一线; 2:非一线 default:0';
# alter table region
# add region_type tinyint(1) default 0 null comment '城市类别 0: 未设置类型; 1:一线; 2:非一线 default:0';
#
# ALTER TABLE opportunity
# ADD COLUMN transfer_region_uuid varchar(100) NULL COMMENT '转入城市 uuid',
# ADD COLUMN transfer_out_region_uuid varchar(100) NULL COMMENT '转出城市 uuid';
#
# alter table opportunity
# add is_transfer tinyint(1) default 0 null comment '是否城市间转介绍 0:否 1:是';
### 会议室改版
alter table room_order
add pwd varchar(100) default null null comment '预约密码';
ALTER TABLE opportunity
ADD COLUMN transfer_region_uuid varchar(100) NULL COMMENT '转入城市 uuid',
ADD COLUMN transfer_out_region_uuid varchar(100) NULL COMMENT '转出城市 uuid';
alter table opportunity
add is_transfer tinyint(1) default 0 null comment '是否城市间转介绍 0:否 1:是';
......
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