230217.sql 862 B

12345678910111213141516171819202122
  1. -- deptSub字段大小修改
  2. alter table sys_dept_sub
  3. modify app_id varchar(255) default '0' null;
  4. alter table sys_dept_sub
  5. modify app_secret varchar(2048) null;
  6. alter table sys_dept_sub
  7. modify rsa_public_key varchar(2048) null;
  8. -- 众蚁云回调异步通知记录
  9. create table zhongyiyun_input_record
  10. (
  11. id int auto_increment comment '主键id'
  12. primary key,
  13. req_type varchar(20) not null comment '请求业务类型',
  14. req_id varchar(64) null comment '请求序号',
  15. req_body text null comment '请求body',
  16. decrypt_body text null comment '解密后的body',
  17. create_time datetime default CURRENT_TIMESTAMP null comment '创建时间'
  18. )
  19. comment '众蚁云回调异步通知记录';