Browse Source

Add missing fields in H2 init sql (#6454)

2.0.7-release
kezhenxu94 3 years ago committed by lenboo
parent
commit
677a8d427e
  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)
);
@ -592,6 +594,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)
);
@ -836,6 +839,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