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

zhongjiajie pushed a commit to branch 3.2.1-prepare
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git

commit d87a1acd19bfb8ff5c4f3bacfbf71c84d720aa36
Author: Jay Chung <zhongjiajie...@gmail.com>
AuthorDate: Mon Feb 5 12:20:07 2024 +0800

    fix: ddl without drop exists (#14128)
    
    Co-authored-by: Rick Cheng <rickche...@gmail.com>
    (cherry picked from commit d8e820c4b9fa70e6d7c8368a8dc17082f8b15db0)
---
 .../src/main/resources/sql/dolphinscheduler_mysql.sql                 | 4 ++++
 1 file changed, 4 insertions(+)

diff --git 
a/dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_mysql.sql 
b/dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_mysql.sql
index 626f6f8b46..9509b1b99f 100644
--- a/dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_mysql.sql
+++ b/dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_mysql.sql
@@ -2092,6 +2092,10 @@ CREATE TABLE `t_ds_fav_task`
   AUTO_INCREMENT = 1
   DEFAULT CHARSET = utf8 COLLATE = utf8_bin;
 
+-- ----------------------------
+-- Table structure for t_ds_trigger_relation
+-- ----------------------------
+DROP TABLE IF EXISTS `t_ds_trigger_relation`;
 CREATE TABLE `t_ds_trigger_relation` (
     `id` bigint(20) NOT NULL AUTO_INCREMENT,
     `trigger_type` int(11) NOT NULL DEFAULT '0' COMMENT '0 process 1 task',

Reply via email to