Skip to content

Commit

Permalink
fix: ddl without drop exists (#14128)
Browse files Browse the repository at this point in the history
Co-authored-by: Rick Cheng <rickchengx@gmail.com>
  • Loading branch information
zhongjiajie and rickchengx authored Feb 5, 2024
1 parent 4d6af51 commit d8e820c
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit d8e820c

Please sign in to comment.