t_credit_apply_userfile.sql 890 B

12345678910111213
  1. -- 额度申请记录文件信息 t_credit_apply_userfile
  2. create table t_credit_apply_userfile(
  3. id int not null auto_increment comment 'id',
  4. code varchar(10) not null comment '额度申请用户文件编号',
  5. credit_apply_code varchar(10) not null default '' comment '额度申请记录编号',
  6. file_type_code varchar(10) not null default '' comment '文件类型编号',
  7. url varchar(255) not null default '' comment '文件全路径',
  8. number smallint not null default 0 comment '序号',
  9. create_time timestamp not null default current_timestamp comment '创建时间',
  10. update_time timestamp not null default current_timestamp on update current_timestamp comment '更新时间',
  11. primary key(id) comment '主键,没有重复',
  12. unique index(code) comment '额度申请用户文件编号,唯一索引'
  13. )ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT '额度申请记录文件信息';