Merge pull request #9814 from dataease/pr@dev-v2@perf_platform_validate

perf(X-Pack): 系统配置-平台对接-国际飞书设置校验异常
This commit is contained in:
fit2cloud-chenyw 2024-05-23 17:26:09 +08:00 committed by GitHub
commit e6977a8dee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 2 deletions

View File

@ -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`;
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`)
);

@ -1 +1 @@
Subproject commit 657f4c79e3ac50269fc9bd03b57f3a7f60475755
Subproject commit d56e0313447b0c04983b5c660edd4c9ab3658ca1