weaver-hrm-salary/resource/sqlupgrade/PG/sql202406260403.sql

13 lines
246 B
MySQL
Raw Normal View History

2024-06-26 14:56:43 +08:00
create table hrsa_api_task_record
(
id bigint primary key ,
source varchar(500) ,
api varchar(500),
param text ,
response text,
create_time timestamp,
update_time timestamp,
delete_type int default 0,
tenant_key varchar(10)
);
/