digital_operation_20231204.sql 625 B

12345678910111213
  1. drop table if exists sql_backup_record;
  2. create table sql_backup_record
  3. (
  4. id int auto_increment not null primary key,
  5. file_name varchar(50) not null comment '文件名称',
  6. file_path varchar(100) not null comment '文件备份位置',
  7. file_size bigint null comment '文件大小',
  8. backup_time datetime not null default now() comment '备份时间',
  9. data_source int not null default 0 comment '文件来源',
  10. remarks varchar(500) null default '手动备份' comment '备注',
  11. tenant_id varchar(10) null comment '租户id'
  12. ) comment 'sql备份上传记录表';