12345678910111213141516171819202122232425262728 |
- create table user_rate
- (
- id bigint auto_increment,
- user_id bigint not null comment '用户id',
- rate int null comment '抽成比例',
- create_time timestamp null comment '创建时间',
- update_time timestamp null comment '更新时间',
- constraint user_rate_pk
- primary key (id)
- )
- comment '用户的分成比例';
- -- 语音房创建同步的利率消息
- create table 'yingtao'.user_rate_change_message
- (
- id bigint(10) auto_increment,
- message_id varchar(32) null comment '消息id',
- content varchar(64) null comment '同步的数据',
- status tinyint(2) null,
- primary key (id)
- )
- comment '用户分成利率消息同步表';
|