diff --git a/resource/sqlupgrade/DM/sql202306260103.sql b/resource/sqlupgrade/DM/sql202306260103.sql new file mode 100644 index 000000000..0d80216bc --- /dev/null +++ b/resource/sqlupgrade/DM/sql202306260103.sql @@ -0,0 +1,13 @@ +CREATE TABLE hrsa_salary_bill_watermark +( +id NUMBER(38,0) PRIMARY KEY NOT NULL, +watermark_status NUMBER NULL, +watermark_type VARCHAR2(255) NULL, +watermark_setting CLOB NULL, +create_time DATE DEFAULT sysdate, +update_time DATE DEFAULT sysdate, +creator NUMBER(38,0) NOT NULL, +delete_type NUMBER NOT NULL, +tenant_key VARCHAR2(255) +) +/ \ No newline at end of file diff --git a/resource/sqlupgrade/JC/sql202306260103.sql b/resource/sqlupgrade/JC/sql202306260103.sql new file mode 100644 index 000000000..0d80216bc --- /dev/null +++ b/resource/sqlupgrade/JC/sql202306260103.sql @@ -0,0 +1,13 @@ +CREATE TABLE hrsa_salary_bill_watermark +( +id NUMBER(38,0) PRIMARY KEY NOT NULL, +watermark_status NUMBER NULL, +watermark_type VARCHAR2(255) NULL, +watermark_setting CLOB NULL, +create_time DATE DEFAULT sysdate, +update_time DATE DEFAULT sysdate, +creator NUMBER(38,0) NOT NULL, +delete_type NUMBER NOT NULL, +tenant_key VARCHAR2(255) +) +/ \ No newline at end of file diff --git a/resource/sqlupgrade/Mysql/sql202306260103.sql b/resource/sqlupgrade/Mysql/sql202306260103.sql new file mode 100644 index 000000000..305119e3d --- /dev/null +++ b/resource/sqlupgrade/Mysql/sql202306260103.sql @@ -0,0 +1,12 @@ +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 +) ; \ No newline at end of file diff --git a/resource/sqlupgrade/Oracle/sql202306260103.sql b/resource/sqlupgrade/Oracle/sql202306260103.sql new file mode 100644 index 000000000..0d80216bc --- /dev/null +++ b/resource/sqlupgrade/Oracle/sql202306260103.sql @@ -0,0 +1,13 @@ +CREATE TABLE hrsa_salary_bill_watermark +( +id NUMBER(38,0) PRIMARY KEY NOT NULL, +watermark_status NUMBER NULL, +watermark_type VARCHAR2(255) NULL, +watermark_setting CLOB NULL, +create_time DATE DEFAULT sysdate, +update_time DATE DEFAULT sysdate, +creator NUMBER(38,0) NOT NULL, +delete_type NUMBER NOT NULL, +tenant_key VARCHAR2(255) +) +/ \ No newline at end of file diff --git a/resource/sqlupgrade/SQLServer/sql202306260103.sql b/resource/sqlupgrade/SQLServer/sql202306260103.sql new file mode 100644 index 000000000..68a7bed91 --- /dev/null +++ b/resource/sqlupgrade/SQLServer/sql202306260103.sql @@ -0,0 +1,14 @@ +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) +) +GO \ No newline at end of file