12 lines
277 B
MySQL
12 lines
277 B
MySQL
|
|
CREATE TABLE hrsa_api_task_record (
|
||
|
|
id bigint(0) NOT NULL ,
|
||
|
|
source varchar(500) ,
|
||
|
|
api varchar(500),
|
||
|
|
param text ,
|
||
|
|
response text,
|
||
|
|
tenant_key varchar(255) ,
|
||
|
|
delete_type int(0) ,
|
||
|
|
create_time datetime(0),
|
||
|
|
update_time datetime(0),
|
||
|
|
PRIMARY KEY (id) USING BTREE
|
||
|
|
);
|