12345678910111213141516171819202122 |
- -- deptSub字段大小修改
- alter table sys_dept_sub
- modify app_id varchar(255) default '0' null;
- alter table sys_dept_sub
- modify app_secret varchar(2048) null;
- alter table sys_dept_sub
- modify rsa_public_key varchar(2048) null;
- -- 众蚁云回调异步通知记录
- create table zhongyiyun_input_record
- (
- id int auto_increment comment '主键id'
- primary key,
- req_type varchar(20) not null comment '请求业务类型',
- req_id varchar(64) null comment '请求序号',
- req_body text null comment '请求body',
- decrypt_body text null comment '解密后的body',
- create_time datetime default CURRENT_TIMESTAMP null comment '创建时间'
- )
- comment '众蚁云回调异步通知记录';
|