qiuyanjun888 commented on code in PR #18349: URL: https://github.com/apache/dolphinscheduler/pull/18349#discussion_r3418281176
########## dolphinscheduler-dao/src/main/resources/sql/upgrade/3.4.1_schema/mysql/dolphinscheduler_ddl.sql: ########## @@ -16,4 +16,7 @@ */ ALTER TABLE `t_ds_serial_command` -MODIFY COLUMN `workflow_definition_code` BIGINT(20) NOT NULL COMMENT 'workflow definition code'; \ No newline at end of file +MODIFY COLUMN `workflow_definition_code` BIGINT(20) NOT NULL COMMENT 'workflow definition code'; + +ALTER TABLE `t_ds_environment_worker_group_relation` +ADD COLUMN `worker_group_id` int(11) DEFAULT NULL COMMENT 'worker group id'; Review Comment: Addressed in 05ef5125df. I moved the worker_group_id upgrade scripts from 3.4.1_schema to 3.5.0_schema for both MySQL and PostgreSQL. The 3.4.1 upgrade scripts are no longer changed in this PR. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
