From abd8431d4920deaca128ad3bd0fa16120f1f6049 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=92=B1=E6=B6=9B?= <15850646081@163.com> Date: Mon, 26 Jun 2023 16:22:19 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B0=B4=E5=8D=B0=E4=B8=8A=E7=BA=BF=E8=84=9A?= =?UTF-8?q?=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resource/sqlupgrade/DM/sql202306260103.sql | 13 +++++++++++++ resource/sqlupgrade/JC/sql202306260103.sql | 13 +++++++++++++ resource/sqlupgrade/Mysql/sql202306260103.sql | 12 ++++++++++++ resource/sqlupgrade/Oracle/sql202306260103.sql | 13 +++++++++++++ resource/sqlupgrade/SQLServer/sql202306260103.sql | 14 ++++++++++++++ 5 files changed, 65 insertions(+) create mode 100644 resource/sqlupgrade/DM/sql202306260103.sql create mode 100644 resource/sqlupgrade/JC/sql202306260103.sql create mode 100644 resource/sqlupgrade/Mysql/sql202306260103.sql create mode 100644 resource/sqlupgrade/Oracle/sql202306260103.sql create mode 100644 resource/sqlupgrade/SQLServer/sql202306260103.sql 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