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

12 lines
414 B
MySQL
Raw Normal View History

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)
) ;