This is an automated email from the ASF dual-hosted git repository.

panyuepeng pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/streampark.git


The following commit(s) were added to refs/heads/dev by this push:
     new 98dd92962 [Hotfix][Console] Modify the id of t_flink_app with 
auto_increment(#4257)
98dd92962 is described below

commit 98dd9296251c9f0e2150f289c88839f44061b349
Author: Gianzie <[email protected]>
AuthorDate: Mon Jun 30 16:08:33 2025 +0800

    [Hotfix][Console] Modify the id of t_flink_app with auto_increment(#4257)
---
 .../src/main/assembly/script/schema/mysql-schema.sql                    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/streampark-console/streampark-console-service/src/main/assembly/script/schema/mysql-schema.sql
 
b/streampark-console/streampark-console-service/src/main/assembly/script/schema/mysql-schema.sql
index 05a134f60..e2c4a0e87 100644
--- 
a/streampark-console/streampark-console-service/src/main/assembly/script/schema/mysql-schema.sql
+++ 
b/streampark-console/streampark-console-service/src/main/assembly/script/schema/mysql-schema.sql
@@ -38,7 +38,7 @@ create table `t_app` (
 -- ----------------------------
 drop table if exists `t_flink_app`;
 create table `t_flink_app` (
-  `id` bigint not null,
+  `id` bigint not null auto_increment,
   `team_id` bigint not null,
   `job_type` tinyint default null,
   `deploy_mode` tinyint default null,

Reply via email to