t_white_list.sql 527 B

123456789
  1. -- 企业用户白名单 t_white_list
  2. create table t_white_list(
  3. id int not null auto_increment comment 'id',
  4. enuu int not null default 0 comment '用户企业uu',
  5. useruu int not null default 0 comment '用户uu',
  6. create_time timestamp not null default current_timestamp comment '创建时间',
  7. update_time timestamp not null default current_timestamp on update current_timestamp comment '更新时间',
  8. primary key(id) comment '主键,没有重复'
  9. )ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT '企业用户白名单';