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

12 lines
424 B
MySQL
Raw Normal View History

2023-06-26 16:22:19 +08:00
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 datetime NULL DEFAULT NULL,
update_time datetime NULL DEFAULT NULL,
creator bigint NULL DEFAULT NULL,
delete_type int NULL DEFAULT NULL,
tenant_key varchar(255) NULL DEFAULT NULL,
PRIMARY KEY (id) USING BTREE
) ;