12 lines
414 B
MySQL
12 lines
414 B
MySQL
|
|
CREATE TABLE hrsa_salary_bill_watermark (
|
||
|
|
id bigint NOT NULL,
|
||
|
|
watermark_status int NULL DEFAULT NULL,
|
||
|
|
watermark_type varchar(255) NULL DEFAULT NULL,
|
||
|
|
watermark_setting text NULL,
|
||
|
|
create_time timestamp NULL DEFAULT NULL,
|
||
|
|
update_time timestamp NULL DEFAULT NULL,
|
||
|
|
creator bigint NULL DEFAULT NULL,
|
||
|
|
delete_type int NULL DEFAULT NULL,
|
||
|
|
tenant_key varchar(255) NULL DEFAULT NULL,
|
||
|
|
PRIMARY KEY (id)
|
||
|
|
) ;
|