V5.1.sql 638 B

12345678910111213141516171819202122232425262728
  1. create table user_rate
  2. (
  3. id bigint auto_increment,
  4. user_id bigint not null comment '用户id',
  5. rate int null comment '抽成比例',
  6. create_time timestamp null comment '创建时间',
  7. update_time timestamp null comment '更新时间',
  8. constraint user_rate_pk
  9. primary key (id)
  10. )
  11. comment '用户的分成比例';
  12. -- 语音房创建同步的利率消息
  13. create table 'yingtao'.user_rate_change_message
  14. (
  15. id bigint(10) auto_increment,
  16. message_id varchar(32) null comment '消息id',
  17. content varchar(64) null comment '同步的数据',
  18. status tinyint(2) null,
  19. primary key (id)
  20. )
  21. comment '用户分成利率消息同步表';