voice_update_20240625.sql 526 B

12345678910111213
  1. alter table user_voice modify content varchar(5000) comment '用户输入的文本';
  2. alter table member_auth add auth_value bigint default 0 not null after auth;
  3. create table user_auth_log
  4. (
  5. id bigint auto_increment
  6. primary key,
  7. ssid varchar(64) not null,
  8. type int null comment '类型 1:系统发放 2:订阅发放 3:续订发放 4:内购发放 5:人工发放 6:TTS消耗 7:克隆消耗',
  9. auth_value bigint null,
  10. create_time datetime null
  11. );