1234567891011121314 |
- -- 何亚博 etl模块 查询数据库保留字
- drop table if exists etl_column_system;
- create table etl_column_system
- (
- id int auto_increment
- primary key,
- name varchar(20) not null comment '字段名称',
- db_type int not null comment '数据源类型 0-mysql 1-oracle 2-sqlserver 3-postgresql 4-clickhouse 5-人大金仓 6-达梦'
- )
- comment '数据库系统自留字段表';
- -- 何亚博 upgrade sql恢复记录恢复状态
- alter table sql_backup_record add column restore_status int default 0 null comment '恢复状态';
- alter table sql_backup_record add column restore_time datetime null comment '恢复时间';
|