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

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


The following commit(s) were added to refs/heads/dev by this push:
     new 03f42cad2 [bug] Fixed the bug where the modify_time of the task 
changes with the current time (#3360)
03f42cad2 is described below

commit 03f42cad2207135741ef5b97f32cb5f4a8137f52
Author: charonjiang <[email protected]>
AuthorDate: Sun Nov 26 23:23:25 2023 +0800

    [bug] Fixed the bug where the modify_time of the task changes with the 
current time (#3360)
---
 .../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 8fd8c1831..3c69e1457 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
@@ -87,7 +87,7 @@ create table `t_flink_app` (
   `option_state` tinyint default null,
   `tracking` tinyint default null,
   `create_time` datetime not null default current_timestamp comment 'create 
time',
-  `modify_time` datetime not null default current_timestamp on update 
current_timestamp comment 'modify time',
+  `modify_time` datetime not null default current_timestamp comment 'modify 
time',
   `option_time` datetime default null,
   `release` tinyint default 1,
   `build` tinyint default 1,

Reply via email to