diff --git a/docker/postgres/docker-entrypoint-initdb/init.sql b/docker/postgres/docker-entrypoint-initdb/init.sql index 565dfd58dc..371e888a0c 100755 --- a/docker/postgres/docker-entrypoint-initdb/init.sql +++ b/docker/postgres/docker-entrypoint-initdb/init.sql @@ -308,7 +308,7 @@ CREATE TABLE t_ds_process_definition ( tenant_id int NOT NULL DEFAULT '-1' , update_time timestamp DEFAULT NULL , modify_by varchar(36) DEFAULT '' , - resource_ids varchar(64) + resource_ids varchar(64), PRIMARY KEY (id) ) ; diff --git a/sql/dolphinscheduler-postgre.sql b/sql/dolphinscheduler-postgre.sql index 4ff72d32b5..d9204ba94f 100644 --- a/sql/dolphinscheduler-postgre.sql +++ b/sql/dolphinscheduler-postgre.sql @@ -308,7 +308,7 @@ CREATE TABLE t_ds_process_definition ( tenant_id int NOT NULL DEFAULT '-1' , update_time timestamp DEFAULT NULL , modify_by varchar(36) DEFAULT '' , - resource_ids varchar(64) + resource_ids varchar(64), PRIMARY KEY (id) ) ;