diff --git a/projects/control-service/projects/pipelines_control_service/src/main/resources/db/migration/V20213110120000__add_last_execution_info_data_job.sql b/projects/control-service/projects/pipelines_control_service/src/main/resources/db/migration/V20213110120000__add_last_execution_info_data_job.sql new file mode 100644 index 0000000000..ccf358b805 --- /dev/null +++ b/projects/control-service/projects/pipelines_control_service/src/main/resources/db/migration/V20213110120000__add_last_execution_info_data_job.sql @@ -0,0 +1,6 @@ +alter table if exists data_job + add column if not exists last_execution_status smallint; +alter table if exists data_job + add column if not exists last_execution_end_time timestamp; +alter table if exists data_job + add column if not exists last_execution_duration int;