From cd1090cee89e5333a24b56f66e81962c7da4c170 Mon Sep 17 00:00:00 2001 From: lucas2 Date: Fri, 30 Jun 2023 08:40:56 +0800 Subject: [PATCH] =?UTF-8?q?add=20=E6=B7=BB=E5=8A=A0=20=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=BA=93=20=E6=95=B0=E6=8D=AE=E9=87=8F=20=E7=BB=9F=E8=AE=A1?= =?UTF-8?q?=E8=A1=A8=20=E5=88=9B=E5=BB=BA=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/0.0.9/02_add_table_dbStatistics.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 scripts/0.0.9/02_add_table_dbStatistics.sql diff --git a/scripts/0.0.9/02_add_table_dbStatistics.sql b/scripts/0.0.9/02_add_table_dbStatistics.sql new file mode 100644 index 0000000..58c8bd3 --- /dev/null +++ b/scripts/0.0.9/02_add_table_dbStatistics.sql @@ -0,0 +1,9 @@ +DROP TABLE IF EXISTS "public"."dbStatistics"; +CREATE TABLE "public"."dbStatistics" ( + id serial NOT NULL PRIMARY KEY, + "dbName" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, + "sourceId" int4 NOT NULL, + "dbRecordCount" int8 NOT NULL, + "time" timestamptz NOT NULL, + "description" varchar(255) NULL +); \ No newline at end of file