Browse Source

[Fix-11633] The data type of the PostgreSQL database column is wrong. (#11633) (#11634)

3.1.0-release
seedscoder 2 years ago committed by GitHub
parent
commit
145e441afb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_postgresql.sql

2
dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_postgresql.sql

@ -428,7 +428,7 @@ CREATE TABLE t_ds_task_definition_log (
project_code bigint DEFAULT NULL ,
user_id int DEFAULT NULL ,
task_type varchar(50) DEFAULT NULL ,
task_execute_type int(11) DEFAULT '0',
task_execute_type int DEFAULT '0',
task_params text ,
flag int DEFAULT NULL ,
task_priority int DEFAULT '2' ,

Loading…
Cancel
Save