From 34e723d3ebf0118ebde6e87fdc0601ae90aba15d Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Thu, 23 May 2024 17:24:14 +0800 Subject: [PATCH] =?UTF-8?q?perf(X-Pack):=20=E7=B3=BB=E7=BB=9F=E9=85=8D?= =?UTF-8?q?=E7=BD=AE-=E5=B9=B3=E5=8F=B0=E5=AF=B9=E6=8E=A5-=E5=9B=BD?= =?UTF-8?q?=E9=99=85=E9=A3=9E=E4=B9=A6=E8=AE=BE=E7=BD=AE=E6=A0=A1=E9=AA=8C?= =?UTF-8?q?=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/db/migration/V2.7__ddl.sql | 13 ++++++++++++- de-xpack | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/core/core-backend/src/main/resources/db/migration/V2.7__ddl.sql b/core/core-backend/src/main/resources/db/migration/V2.7__ddl.sql index fa4501db71..1f79fe929a 100644 --- a/core/core-backend/src/main/resources/db/migration/V2.7__ddl.sql +++ b/core/core-backend/src/main/resources/db/migration/V2.7__ddl.sql @@ -21,4 +21,15 @@ ALTER TABLE `xpack_setting_authentication` ALTER TABLE `xpack_setting_authentication` ADD COLUMN `synced` tinyint(1) NOT NULL DEFAULT 0 COMMENT '已同步' AFTER `plugin_json`; ALTER TABLE `xpack_setting_authentication` - ADD COLUMN `valid` tinyint(1) NOT NULL DEFAULT 0 COMMENT '有效' AFTER `synced`; \ No newline at end of file + ADD COLUMN `valid` tinyint(1) NOT NULL DEFAULT 0 COMMENT '有效' AFTER `synced`; + + +DROP TABLE IF EXISTS `xpack_platform_token`; +CREATE TABLE `xpack_platform_token` +( + `id` int NOT NULL, + `token` varchar(255) NOT NULL, + `create_time` bigint NOT NULL, + `exp_time` bigint NOT NULL, + PRIMARY KEY (`id`) +); diff --git a/de-xpack b/de-xpack index 657f4c79e3..d56e031344 160000 --- a/de-xpack +++ b/de-xpack @@ -1 +1 @@ -Subproject commit 657f4c79e3ac50269fc9bd03b57f3a7f60475755 +Subproject commit d56e0313447b0c04983b5c660edd4c9ab3658ca1