Browse Source

Add missing fields in H2 init sql (#6454)

3.0.0/version-upgrade
kezhenxu94 3 years ago committed by GitHub
parent
commit
0e45ddc47c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      sql/dolphinscheduler_h2.sql

4
sql/dolphinscheduler_h2.sql

@ -327,6 +327,7 @@ CREATE TABLE t_ds_command
process_instance_priority int(11) DEFAULT NULL,
worker_group varchar(64),
environment_code bigint(20) DEFAULT '-1',
dry_run int NULL DEFAULT 0,
PRIMARY KEY (id),
KEY priority_id_index (process_instance_priority, id)
);
@ -379,6 +380,7 @@ CREATE TABLE t_ds_error_command
worker_group varchar(64),
environment_code bigint(20) DEFAULT '-1',
message text,
dry_run int NULL DEFAULT 0,
PRIMARY KEY (id)
);
@ -591,6 +593,7 @@ CREATE TABLE t_ds_process_instance
timeout int(11) DEFAULT '0',
tenant_id int(11) NOT NULL DEFAULT '-1',
var_pool longtext,
dry_run int NULL DEFAULT 0,
PRIMARY KEY (id)
);
@ -835,6 +838,7 @@ CREATE TABLE t_ds_task_instance
first_submit_time datetime DEFAULT NULL,
delay_time int(4) DEFAULT '0',
var_pool longtext,
dry_run int NULL DEFAULT 0,
PRIMARY KEY (id),
FOREIGN KEY (process_instance_id) REFERENCES t_ds_process_instance (id) ON DELETE CASCADE
);

Loading…
Cancel
Save